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;
+
+ hud_configure_active_panel = HUD_PANEL_SCORE;
HUD_Panel_UpdateCvars(score);
vector pos, mySize;
if(!autocvar_hud_panel_physics)
{
if(!autocvar__hud_configure) return;
+ if(spectatee_status <= 0 && autocvar_hud_panel_physics < 2) return;
}
- else
- hud_configure_active_panel = HUD_PANEL_PHYSICS;
+
+ hud_configure_active_panel = HUD_PANEL_PHYSICS;
HUD_Panel_UpdateCvars(physics);