From: z411 Date: Mon, 24 Oct 2022 19:09:07 +0000 (-0300) Subject: Cleanup obsolete warmup info messages X-Git-Tag: xonotic-v0.8.6~285^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4934cbeb6ff939a5c0f3276ceae717bb66417e71;p=xonotic%2Fxonotic-data.pk3dir.git Cleanup obsolete warmup info messages --- diff --git a/qcsrc/client/hud/panel/infomessages.qc b/qcsrc/client/hud/panel/infomessages.qc index 0f0325eeb..9db3bf72e 100644 --- a/qcsrc/client/hud/panel/infomessages.qc +++ b/qcsrc/client/hud/panel/infomessages.qc @@ -162,19 +162,9 @@ void HUD_InfoMessages() else if(ready_waiting && !spectatee_status) { if(ready_waiting_for_me) - { - if(warmup_stage) - s = sprintf(_("%sPress ^3%s%s to end warmup"), blinkcolor, getcommandkey(_("ready"), "ready"), blinkcolor); - else - s = sprintf(_("%sPress ^3%s%s once you are ready"), blinkcolor, getcommandkey(_("ready"), "ready"), blinkcolor); - } + s = sprintf(_("%sPress ^3%s%s to end warmup"), blinkcolor, getcommandkey(_("ready"), "ready"), blinkcolor); else - { - if(warmup_stage) - s = _("^2Waiting for others to ready up to end warmup..."); - else - s = _("^2Waiting for others to ready up..."); - } + s = _("^2Waiting for others to ready up to end warmup..."); InfoMessage(s); } else if(warmup_stage && !spectatee_status)