From: terencehill Date: Thu, 15 Sep 2011 21:03:43 +0000 (+0200) Subject: Make it possible to show the maximized radar in any case (ignore hud_panel_radar... X-Git-Tag: xonotic-v0.6.0~40^2~41^2^2~8 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2cfca369bf87e96709bb6e5d2c7db5f5d65b4409;p=xonotic%2Fxonotic-data.pk3dir.git Make it possible to show the maximized radar in any case (ignore hud_panel_radar value) --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 9d66e9a17..6b5ec6c17 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -2302,8 +2302,11 @@ void HUD_Radar(void) { if (!autocvar__hud_configure) { - if (autocvar_hud_panel_radar == 0 && autocvar_hud_panel_radar_maximized == 0) return; - if (autocvar_hud_panel_radar != 2 && !teamplay) return; + if (!autocvar_hud_panel_radar_maximized) + { + if (autocvar_hud_panel_radar == 0) return; + if (autocvar_hud_panel_radar != 2 && !teamplay) return; + } } else hud_configure_active_panel = HUD_PANEL_RADAR;