From 4ea3b7794f8f2c94f7a11b56a9cbfec67ba3f6c1 Mon Sep 17 00:00:00 2001 From: Nyeriah Date: Sun, 18 Jan 2015 21:03:08 -0200 Subject: [PATCH] Scripts/HellfireRamparts: Add a missing reset call and correct spawn masks for Reinforced Fel Iron Chests Thanks to @ariel- for noticing the missing _Reset(); Closes #13747 (cherry picked from commit 866eff64aa90974e2b1a774b8fd6ea4856346635) --- sql/updates/world/2015_01_18_00_world.sql | 3 +++ .../HellfireRamparts/boss_vazruden_the_herald.cpp | 1 + 2 files changed, 4 insertions(+) create mode 100644 sql/updates/world/2015_01_18_00_world.sql diff --git a/sql/updates/world/2015_01_18_00_world.sql b/sql/updates/world/2015_01_18_00_world.sql new file mode 100644 index 0000000000..83832dcaf8 --- /dev/null +++ b/sql/updates/world/2015_01_18_00_world.sql @@ -0,0 +1,3 @@ +-- +UPDATE `gameobject` SET `spawnMask` = 1 WHERE `guid` = 20496 AND `id` = 185168; +UPDATE `gameobject` SET `spawnMask` = 2 WHERE `guid` = 20499 AND `id` = 185169; diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp index 3951b0eadf..a6c00c05dc 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp @@ -86,6 +86,7 @@ class boss_nazan : public CreatureScript void Reset() override { Initialize(); + _Reset(); } void EnterCombat(Unit* /*who*/) override { }