From: terencehill Date: Tue, 31 Aug 2010 20:55:10 +0000 (+0200) Subject: Replace incorrect +attack with +fire X-Git-Tag: xonotic-v0.1.0preview~315^2~2^2~4 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5c6121708145094712e3d7da1a4a9aacc2a00515;p=xonotic%2Fxonotic-data.pk3dir.git Replace incorrect +attack with +fire --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index b0ea78197..f2b4a5a96 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4629,9 +4629,9 @@ void HUD_InfoMessages(void) o += eY * fontsize_y; if(spectatee_status == -1) - s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 to spectate"); + s = strcat("^1Press ^3", getcommandkey("primary fire", "+fire"), "^1 to spectate"); else - s = strcat("^1Press ^3", getcommandkey("primary fire", "+attack"), "^1 for another player"); + s = strcat("^1Press ^3", getcommandkey("primary fire", "+fire"), "^1 for another player"); if(autocvar_hud_panel_infomessages_flip) o_x = pos_x + mySize_x - stringwidth(s, TRUE, fontsize); drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL); @@ -4640,7 +4640,7 @@ void HUD_InfoMessages(void) if(spectatee_status == -1) s = strcat("^1Use ^3", getcommandkey("next weapon", "weapnext"), "^1 or ^3", getcommandkey("previous weapon", "weapprev"), "^1 to change the speed"); else - s = strcat("^1Press ^3", getcommandkey("secondary fire", "+attack2"), "^1 to observe"); + s = strcat("^1Press ^3", getcommandkey("secondary fire", "+fire2"), "^1 to observe"); if(autocvar_hud_panel_infomessages_flip) o_x = pos_x + mySize_x - stringwidth(s, TRUE, fontsize); drawcolorcodedstring(o, s, fontsize, a, DRAWFLAG_NORMAL);