]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Colorize seconds in yellow
authorMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Fri, 5 Oct 2012 23:34:55 +0000 (02:34 +0300)
committerMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Fri, 5 Oct 2012 23:34:55 +0000 (02:34 +0300)
qcsrc/client/scoreboard.qc

index c07759fee571a92d40642f4d2500535eedf79401..51b014bdc1c18514c8f98689ff2b93367bad7143 100644 (file)
@@ -1385,11 +1385,11 @@ void HUD_DrawScoreboard()
                {
                        // a negative value means we are awaiting respawn, time value is still the same
                        respawn_time *= -1; // remove our mark now that we checked it
-                       str = strcat("Respawning in ", ftos(respawn_time - time), " seconds...");
+                       str = strcat("Respawning in ^3", ftos(respawn_time - time), "^7 seconds...");
                }
                else if(time < respawn_time)
                {
-                       str = strcat("You are dead, wait ", ftos(respawn_time - time), " seconds before respawning");
+                       str = strcat("You are dead, wait ^3", ftos(respawn_time - time), "^7 seconds before respawning");
                }
                else if(time >= respawn_time)
                {