From: terencehill Date: Sat, 6 Aug 2016 12:56:44 +0000 (+0200) Subject: Don't enter hud editor when the scoreboard is active X-Git-Tag: xonotic-v0.8.2~716^2~12 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9f4aa2e2d39e218dac08200ef53fa0e7c117dc85;p=xonotic%2Fxonotic-data.pk3dir.git Don't enter hud editor when the scoreboard is active --- diff --git a/qcsrc/client/hud/hud_config.qc b/qcsrc/client/hud/hud_config.qc index 56a79364d..04a206315 100644 --- a/qcsrc/client/hud/hud_config.qc +++ b/qcsrc/client/hud/hud_config.qc @@ -1229,7 +1229,7 @@ void HUD_Configure_Frame() int i; if(autocvar__hud_configure) { - if(isdemo() || intermission == 2) + if(isdemo() || intermission == 2 || scoreboard_active) { HUD_Configure_Exit_Force(); return;