We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5f244b commit 3fa0f2fCopy full SHA for 3fa0f2f
tf2_quickplay/app.py
@@ -524,13 +524,13 @@ def score_server(humans: int, max_players: int) -> float:
524
525
real_max_players = max_players
526
527
- # server is already full, we can't go over
+ # we're going over max players, so can't join
528
if new_total_players > real_max_players:
529
return -100.0
530
531
# if we don't have enough headroom, then penalize
532
if new_total_players > real_max_players - SERVER_HEADROOM:
533
- return -0.3
+ return -0.25
534
535
# penalize a completely empty server
536
if humans == 0:
0 commit comments