From 18aa935d935f51863fd89bcf51279fb4e388422c Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 24 Feb 2013 14:08:50 +0100 Subject: [PATCH] Fix autocvar_hud_panel_weapons_complainbubble 0 not working --- qcsrc/client/hud.qc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 77516699e..6632bfed8 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -514,8 +514,7 @@ void HUD_Weapons(void) weaponorder_cmp_str = string_null; } - if(autocvar_hud_panel_weapons_complainbubble) - if(autocvar__hud_configure || time - complain_weapon_time >= when + fadetime) + if(!autocvar_hud_panel_weapons_complainbubble || autocvar__hud_configure || time - complain_weapon_time >= when + fadetime) complain_weapon = 0; // determine which weapons are going to be shown -- 2.39.2