[Server] Fix display of average client count

master
sfan5 2014-07-17 22:31:48 +02:00
parent 95c8b7e3ee
commit 5cfa4bc158
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ def server(phenny, input):
version = choice["version"]
ping = int(choice["ping"] * 100)
clients_max = choice["clients_max"]
clients_avg = int(choice["pop_v"] / choice["clients_top"])
clients_avg = choice["pop_v"]
clients_top = choice["clients_top"]
phenny.reply("%s | %s | Clients: %d/%d, %d/%d | Version: %s | Ping: %dms" % (name, address, clients, clients_max, clients_avg, clients_top, version, ping))