From 30fb0c40b9d3e79978916460107efbd64352b743 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 1 May 2011 16:16:45 +0200 Subject: [PATCH] Fix strings of the InfoMessages panel shown while observing/spectating and the menu for another panel is active in hud configure mode --- qcsrc/client/hud.qc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 7112a69c3..062a6db30 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4136,16 +4136,14 @@ void HUD_InfoMessages(void) fontsize = '0.20 0.20 0' * mySize_y; float a; - if(spectatee_status != 0) - a = 1; - else - a = panel_fg_alpha; + a = panel_fg_alpha; string s; if(!autocvar__hud_configure) { if(spectatee_status && !intermission) { + a = 1; if(spectatee_status == -1) s = _("^1Observing"); else -- 2.39.2