From: Mircea Kitsune Date: Fri, 5 Oct 2012 23:34:55 +0000 (+0300) Subject: Colorize seconds in yellow X-Git-Tag: xonotic-v0.7.0~198^2~11 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4cd55965e8d7759f6118859ae37a3095288af8bd;p=xonotic%2Fxonotic-data.pk3dir.git Colorize seconds in yellow --- diff --git a/qcsrc/client/scoreboard.qc b/qcsrc/client/scoreboard.qc index c07759fee..51b014bdc 100644 --- a/qcsrc/client/scoreboard.qc +++ b/qcsrc/client/scoreboard.qc @@ -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) {