From cf9aca38c0bc0a03d962eb54c387017a69a95005 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 3 Mar 2013 19:57:50 +0100 Subject: [PATCH] Let spectators know that game/round is about to start --- qcsrc/client/announcer.qc | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/qcsrc/client/announcer.qc b/qcsrc/client/announcer.qc index 3229e6889..865f28b4d 100644 --- a/qcsrc/client/announcer.qc +++ b/qcsrc/client/announcer.qc @@ -40,8 +40,7 @@ void Announcer_Countdown() if(countdown <= 0) // countdown has finished, starttime is now { - if (!spectatee_status) - centerprint_generic(CPID_GAME_STARTING, _("^1Begin!"), 1, 0); + centerprint_generic(CPID_GAME_STARTING, _("^1Begin!"), 1, 0); Announcer_Play("begin"); remove(self); @@ -49,13 +48,10 @@ void Announcer_Countdown() } else // countdown is still going { - if (!spectatee_status) - { - if(roundstarttime == starttime) - centerprint_generic(CPID_GAME_STARTING, _("^1Round starts in %d seconds"), 1, countdown_rounded); - else - centerprint_generic(CPID_GAME_STARTING, _("^1Game starts in %d seconds"), 1, countdown_rounded); - } + if(roundstarttime == starttime) + centerprint_generic(CPID_GAME_STARTING, _("^1Round starts in %d seconds"), 1, countdown_rounded); + else + centerprint_generic(CPID_GAME_STARTING, _("^1Game starts in %d seconds"), 1, countdown_rounded); if(countdown_rounded <= 3 && countdown_rounded >= 1) Announcer_Play(ftos(countdown_rounded)); -- 2.39.2