diff options
-rw-r--r-- | sql/updates/world/2013_01_03_00_world_gameobject_scripts.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/2013_01_03_00_world_gameobject_scripts.sql b/sql/updates/world/2013_01_03_00_world_gameobject_scripts.sql new file mode 100644 index 00000000000..32faf4b03a0 --- /dev/null +++ b/sql/updates/world/2013_01_03_00_world_gameobject_scripts.sql @@ -0,0 +1,6 @@ +-- the brazier should summon multiple bosses, this is part of +-- an instance encounter and should be handled via cpp +DELETE FROM `gameobject_scripts` WHERE `id` IN (28704,21608,21609,21610); +DELETE FROM gameobject WHERE guid IN (21608,21609,21610); +-- while at it, fix startup issue with npc 3939 +UPDATE `creature` SET `MovementType`=0 WHERE `id`=3939; |