From 9f4aa2e2d39e218dac08200ef53fa0e7c117dc85 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sat, 6 Aug 2016 14:56:44 +0200 Subject: [PATCH] Don't enter hud editor when the scoreboard is active --- qcsrc/client/hud/hud_config.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2