Skip to content

Commit 3976573

Browse files
committedApr 15, 2015
Fix highly loaded server penalty
1 parent bbd62e8 commit 3976573

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def server_points(server):
308308
# increasing your points, it can actually reduce your points
309309
# if you have guests/all-numerics.
310310
if server["clients"] > 16:
311-
points = server["clients"] - 16
311+
points -= server["clients"] - 16
312312

313313
# 1 per month of age, limited to 8
314314
points += min(8, server["game_time"] / (60*60*24*30))

0 commit comments

Comments
 (0)
Please sign in to comment.