From a10f3087093dbcbb4d97ee055c2178c8fddac2e3 Mon Sep 17 00:00:00 2001 From: z411 Date: Tue, 12 Apr 2022 22:14:20 -0400 Subject: [PATCH] Fix subtimer freeze timer --- qcsrc/server/round_handler.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/round_handler.qc b/qcsrc/server/round_handler.qc index 1e896344b..8cf4260ee 100644 --- a/qcsrc/server/round_handler.qc +++ b/qcsrc/server/round_handler.qc @@ -32,6 +32,7 @@ void round_handler_Think(entity this) this.wait = false; this.cnt = this.count + 1; // init countdown round_starttime = time + this.count; + round_delaytime = 0; reset_map(true, false); } @@ -136,7 +137,6 @@ void round_handler_Reset(float next_think) { if (next_think <= game_starttime) rounds_played = 0; round_starttime = next_think + this.count; - round_delaytime = 0; } } -- 2.39.2