From 64c74c48540f4633530fedd8e14801b8781846ff Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 12 Dec 2020 17:56:50 +1000 Subject: [PATCH] Don't end the match at a 0:0 tie unless the server is empty, fixes #1981 --- qcsrc/server/scores.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qcsrc/server/scores.qc b/qcsrc/server/scores.qc index 7cc5c6241..821c378a8 100644 --- a/qcsrc/server/scores.qc +++ b/qcsrc/server/scores.qc @@ -533,7 +533,8 @@ void WinningConditionHelper(entity this) else WinningConditionHelper_topscore = -999999999; } - WinningConditionHelper_equality = 0; + if(player_count == 0) // special case: empty servers DO end the match at a 0:0 tie + WinningConditionHelper_equality = 0; } if(WinningConditionHelper_secondscore == 0) -- 2.39.2