]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Replace incorrect +attack with +fire
authorterencehill <piuntn@gmail.com>
Tue, 31 Aug 2010 20:55:10 +0000 (22:55 +0200)
committerterencehill <piuntn@gmail.com>
Tue, 31 Aug 2010 20:55:10 +0000 (22:55 +0200)
qcsrc/client/hud.qc

index b0ea78197f51a7ef9ba91d2b2722aabbac53dd30..f2b4a5a961e875d4769348dc111294522c8c1826 100644 (file)
@@ -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);