Fix highly loaded server penalty

This commit is contained in:
ShadowNinja
2015-04-15 16:20:21 -04:00
parent bbd62e8474
commit 3976573369

View File

@@ -308,7 +308,7 @@ class ServerList:
# increasing your points, it can actually reduce your points
# if you have guests/all-numerics.
if server["clients"] > 16:
points = server["clients"] - 16
points -= server["clients"] - 16
# 1 per month of age, limited to 8
points += min(8, server["game_time"] / (60*60*24*30))