diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-01-03 01:12:04 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-01-03 01:12:04 +0100 |
commit | a7a23cca342a9cade8edd32c72e5180cd412c9ef (patch) | |
tree | 65d767cb5ed5513ce7d22418c7bbce3346e2252d | |
parent | 8d1e542231d80efd5c06cc567571d611a454af3d (diff) |
DB/Script: More horribad script removals:
Zul gurub: Brazier summons 4 creatures, removed 3 bad spawns, and unsupported the encounters starting with Gri'lek
Fix the MovementType issue Closes #8834
-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; |