summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew <47818697+Nyeriah@users.noreply.github.com>2025-08-19 12:59:57 -0300
committerGitHub <noreply@github.com>2025-08-19 17:59:57 +0200
commite0f2ec41efb7159248b9161825be85fdb8b030c7 (patch)
tree4d303ca741e2d74fbe8fd524516abf5400b9b6b5 /src
parent2602add0fd09dd281ea8318ab162b1cf63c78bd2 (diff)
fix(Scripts/Commands): Allow using debug LFG and BG from console (#22705)
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Commands/cs_debug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Commands/cs_debug.cpp b/src/server/scripts/Commands/cs_debug.cpp
index a9fe5d9e04..a18e01e0bd 100644
--- a/src/server/scripts/Commands/cs_debug.cpp
+++ b/src/server/scripts/Commands/cs_debug.cpp
@@ -73,7 +73,7 @@ public:
{ "hostile", HandleDebugHostileRefListCommand, SEC_ADMINISTRATOR, Console::No },
{ "anim", HandleDebugAnimCommand, SEC_ADMINISTRATOR, Console::No },
{ "arena", HandleDebugArenaCommand, SEC_ADMINISTRATOR, Console::No },
- { "bg", HandleDebugBattlegroundCommand, SEC_ADMINISTRATOR, Console::No },
+ { "bg", HandleDebugBattlegroundCommand, SEC_ADMINISTRATOR, Console::Yes},
{ "cooldown", HandleDebugCooldownCommand, SEC_ADMINISTRATOR, Console::No },
{ "getitemstate", HandleDebugGetItemStateCommand, SEC_ADMINISTRATOR, Console::No },
{ "lootrecipient", HandleDebugGetLootRecipientCommand, SEC_ADMINISTRATOR, Console::No },
@@ -92,7 +92,7 @@ public:
{ "update", HandleDebugUpdateCommand, SEC_ADMINISTRATOR, Console::No },
{ "itemexpire", HandleDebugItemExpireCommand, SEC_ADMINISTRATOR, Console::No },
{ "areatriggers", HandleDebugAreaTriggersCommand, SEC_ADMINISTRATOR, Console::No },
- { "lfg", HandleDebugDungeonFinderCommand, SEC_ADMINISTRATOR, Console::No },
+ { "lfg", HandleDebugDungeonFinderCommand, SEC_ADMINISTRATOR, Console::Yes},
{ "los", HandleDebugLoSCommand, SEC_ADMINISTRATOR, Console::No },
{ "moveflags", HandleDebugMoveflagsCommand, SEC_ADMINISTRATOR, Console::No },
{ "unitstate", HandleDebugUnitStateCommand, SEC_ADMINISTRATOR, Console::No },