diff options
| -rw-r--r-- | sql/updates/world/2014_09_03_00_world_creature_summon_groups.sql | 2 | ||||
| -rw-r--r-- | src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/sql/updates/world/2014_09_03_00_world_creature_summon_groups.sql b/sql/updates/world/2014_09_03_00_world_creature_summon_groups.sql index 13e87461ff3..aba5b88b1d4 100644 --- a/sql/updates/world/2014_09_03_00_world_creature_summon_groups.sql +++ b/sql/updates/world/2014_09_03_00_world_creature_summon_groups.sql @@ -1,6 +1,6 @@ -- SWP: Move Muru summons to database
-DELETE FROM `creature_summon_groups` WHERE `summonerId` = 25741 AND `entry` IN (25798, 25799, 25744);
SET @MURU := 25741;
+DELETE FROM `creature_summon_groups` WHERE `summonerId` = @MURU AND `entry` IN (25798, 25799, 25744);
INSERT INTO `creature_summon_groups` (`summonerId`, `summonerType`, `groupId`, `entry`, `position_x`, `position_y`, `position_z`, `orientation`, `summonType`, `summonTime`) VALUES
(@MURU, 0, 0, 25799, 1780.16, 666.83, 71.19, 5.21, 5, 0), -- Shadowsword Fury Mage
(@MURU, 0, 0, 25799, 1847.93, 600.30, 71.30, 2.57, 5, 0),
diff --git a/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp b/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp index 1927bb94b80..6c3e820e10f 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp @@ -278,7 +278,6 @@ public: { return GetBlackTempleAI<boss_shahrazAI>(creature); } - }; void AddSC_boss_mother_shahraz() |
