From 15474025c861f642e53ca02954f6faaebf4ce66d Mon Sep 17 00:00:00 2001 From: FruitieX Date: Tue, 11 May 2010 23:14:30 +0300 Subject: [PATCH] show all weapons again in hud conf mode in divVerent's implementation --- qcsrc/client/hud.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 8b8b98600e..bb9e985210 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -1036,7 +1036,7 @@ void HUD_WeaponIcons() for(i = WEP_FIRST; i <= WEP_LAST; ++i) { self = get_weaponinfo(i); - if(self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons)) + if(self.weapons && (self.impulse >= 0) && (stat_weapons & self.weapons) || cvar("_hud_configure")) { weaponorder[weapon_cnt] = self; ++weapon_cnt; -- 2.39.2