]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Cleanup obsolete warmup info messages 1088/head
authorz411 <z411@omaera.org>
Mon, 24 Oct 2022 19:09:07 +0000 (16:09 -0300)
committerz411 <z411@omaera.org>
Mon, 24 Oct 2022 19:12:39 +0000 (16:12 -0300)
qcsrc/client/hud/panel/infomessages.qc

index 0f0325eeba18bfd3b1a429422c7cbd41071120e2..9db3bf72e2c3b017c7f40c07047c647af4bb8455 100644 (file)
@@ -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)