Skip to content

Commit

Permalink
Fix highly loaded server penalty
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowNinja committed Apr 15, 2015
1 parent bbd62e8 commit 3976573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Expand Up @@ -308,7 +308,7 @@ def server_points(server):
# 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))
Expand Down

0 comments on commit 3976573

Please sign in to comment.