diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-06-29 18:46:22 +0200 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-06-29 18:46:22 +0200 |
commit | cc899ddc2d57524d45958db52b9eccaa7603e433 (patch) | |
tree | 1d2f12dd838ef046d12aa7f73ef300f9189b5121 | |
parent | 2691defd1e6afd19b0740dc3614e35351706ad93 (diff) |
DB/Misc:
- Convert c_t_a entry into c_a to prevent errors
- Allow mounting in Black Temple <outdoor parts>
- fix by exodius to add sound for Corrupted Ashbringer
Closes #9997
-rw-r--r-- | sql/updates/world/2013_06_29_01_world_creature_addon.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/2013_06_29_01_world_creature_addon.sql b/sql/updates/world/2013_06_29_01_world_creature_addon.sql new file mode 100644 index 00000000000..e7ec3a48752 --- /dev/null +++ b/sql/updates/world/2013_06_29_01_world_creature_addon.sql @@ -0,0 +1,10 @@ +DELETE FROM `creature_template_addon` WHERE `entry`=17975; +DELETE FROM `creature_addon` WHERE `guid`=82987; +INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(82987,829870,0,0,1,0,''); -- Converted from c_t_a, works on both normal and heroic entry + +-- allow mounting inside Black Temple (outdoor areas) +UPDATE `instance_template` SET `allowMount`=1 WHERE `map`=564; + +-- fix for issue #9997 by Exodius +UPDATE `spell_script_names` SET `spell_id`=28441 WHERE `spell_id`=28414 AND `ScriptName`='spell_item_ashbringer'; |