From: terencehill Date: Wed, 15 Dec 2010 23:48:33 +0000 (+0100) Subject: Also disable score panel in race/cts when observing X-Git-Tag: xonotic-v0.5.0~354 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=dc26607d72961fc16c565357aeea5815b9ffee9c;p=xonotic%2Fxonotic-data.pk3dir.git Also disable score panel in race/cts when observing --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 0910c7a78..c9525bf7f 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -3609,6 +3609,7 @@ void HUD_Score(void) if(!autocvar__hud_configure) { if(!autocvar_hud_panel_score) return; + if(spectatee_status == -1 && (gametype == GAME_RACE || gametype == GAME_CTS)) return; } else hud_configure_active_panel = HUD_PANEL_SCORE;