diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2018-11-15 00:32:29 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2019-02-10 14:47:47 +0100 |
commit | bbf515cdb1fdac39bafacedacb8fec537c0ef578 (patch) | |
tree | df06ffcca25c91ac171d2397109c11bc02098c3f /src | |
parent | a9346f74b2349ea1bd5d9506467f04da532c2646 (diff) |
Fix the 'no longer uneven' message appearing repeatedly.
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c index 0d31c43..ac3d55f 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -2729,6 +2729,8 @@ static void CheckAntistack(void) if (level.time < level.antistackNextCheck) return; + level.antistackWasHandicapping = qfalse; + for (int i = 0; i < level.maxclients; i++) { gclient_t *client = level.clients + i; int score; |