From: Rudolf Polzer Date: Thu, 12 Jan 2012 14:18:27 +0000 (+0100) Subject: stuff X-Git-Tag: xonotic-v0.6.0~177^2^2~8 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f0aaa3b961db8c802e2db597118b73d7b8ecb2b9;p=xonotic%2Fxonotic-data.pk3dir.git stuff --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 17a3610df..e941e5954 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -1077,12 +1077,12 @@ void DrawNumIcon_expanding(vector myPos, vector mySize, float x, string icon, fl // void HUD_Powerups(void) { - float strength_time, shield_time; + float strength_time, shield_time, superweapons_time; if(!autocvar__hud_configure) { if(!autocvar_hud_panel_powerups) return; if(spectatee_status == -1) return; - if not(getstati(STAT_ITEMS, 0, 24) & (IT_STRENGTH | IT_INVINCIBLE | IT_SUPERWEAPONS)) return; + if not(getstati(STAT_ITEMS, 0, 24) & (IT_STRENGTH | IT_INVINCIBLE | IT_SUPERWEAPON)) return; if (getstati(STAT_HEALTH) <= 0) return; strength_time = bound(0, getstatf(STAT_STRENGTH_FINISHED) - time, 99);