From 35196af895f26a143a4304f7837e950772c46bce Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Thu, 2 Jul 2026 21:18:53 +0200 Subject: [PATCH] =?UTF-8?q?fix(Core/Battlegrounds):=20apply=20Debug.Battle?= =?UTF-8?q?ground=20and=20Debug.Arena=20con=E2=80=A6=20(#26381)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/server/game/Battlegrounds/BattlegroundMgr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/game/Battlegrounds/BattlegroundMgr.cpp b/src/server/game/Battlegrounds/BattlegroundMgr.cpp index e290c9b6b..3c2411f7f 100644 --- a/src/server/game/Battlegrounds/BattlegroundMgr.cpp +++ b/src/server/game/Battlegrounds/BattlegroundMgr.cpp @@ -61,8 +61,8 @@ bool BattlegroundTemplate::IsArena() const /*********************************************************/ BattlegroundMgr::BattlegroundMgr() : - m_ArenaTesting(false), - m_Testing(false), + m_ArenaTesting(sWorld->getBoolConfig(CONFIG_DEBUG_ARENA)), + m_Testing(sWorld->getBoolConfig(CONFIG_DEBUG_BATTLEGROUND)), m_NextAutoDistributionTime(0), m_AutoDistributionTimeChecker(0), m_NextPeriodicQueueUpdateTime(5 * IN_MILLISECONDS)