From 5989fc71850df6800390420117b26e49258d7901 Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Mon, 26 Sep 2022 15:23:02 +1000 Subject: [PATCH] Prevent "Begin!" announcement & centreprint when returning to warmup Applicable to ReadyRestart() / qc_cmd_sv resetmatch, switching from unlimited to timed warmup (g_warmup -1), and countdown abort (g_warmup -1). --- qcsrc/client/announcer.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/announcer.qc b/qcsrc/client/announcer.qc index e15bc23b7..780b582de 100644 --- a/qcsrc/client/announcer.qc +++ b/qcsrc/client/announcer.qc @@ -130,7 +130,7 @@ void Announcer_Gamestart() float roundstarttime = STAT(ROUNDSTARTTIME); if(roundstarttime > startTime) startTime = roundstarttime; - if(intermission) + if(intermission || warmup_stage) { Announcer_ClearTitle(); if(announcer_countdown) -- 2.39.2