mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
fix(Scripts/Wintergrasp): fix disabled always false (#3437)
This commit is contained in:
@@ -341,7 +341,7 @@ class npc_wg_queue : public CreatureScript
|
||||
|
||||
void UpdateAI(uint32 diff) override
|
||||
{
|
||||
if (CONFIG_WINTERGRASP_ENABLE == false)
|
||||
if (!sWorld->getBoolConfig(CONFIG_WINTERGRASP_ENABLE))
|
||||
return;
|
||||
|
||||
ScriptedAI::UpdateAI(diff);
|
||||
|
||||
Reference in New Issue
Block a user