diff options
author | Nay <dnpd.dd@gmail.com> | 2011-04-03 22:48:49 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2011-04-03 22:48:49 +0100 |
commit | 6b7644a954b7d748eb816e0145adbf7723430262 (patch) | |
tree | 6e07c0cc1be44f550c80b189d7bc5ecbc0e4b267 | |
parent | 3fcb49c685306ac87eb1e8e4abd8afa936aa5f42 (diff) |
DB/Misc: Fix Totem of Wrath debuff. Thanks Kroolik.
-rw-r--r-- | sql/updates/world/2011_04_03_08_world_creatures.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/2011_04_03_08_world_creatures.sql b/sql/updates/world/2011_04_03_08_world_creatures.sql new file mode 100644 index 00000000000..c640926b631 --- /dev/null +++ b/sql/updates/world/2011_04_03_08_world_creatures.sql @@ -0,0 +1,15 @@ +UPDATE `creature_template` SET `speed_run`=1,`spell2`=30708 WHERE `entry`=17539; -- Totem of Wrath I +UPDATE `creature_template` SET `faction_A`=35,`faction_H`=35,`speed_run`=1,`spell2`=30708 WHERE `entry`=30652; -- Totem of Wrath II +UPDATE `creature_template` SET `spell2`=30708 WHERE `entry`=30653; -- Totem of Wrath III +UPDATE `creature_template` SET `faction_A`=35,`faction_H`=35,`spell2`=30708 WHERE `entry`=30654; -- Totem of Wrath IV + +UPDATE `creature_model_info` SET `bounding_radius`=1,`combat_reach`=0,`gender`=2 WHERE `modelid`=4589; + +DELETE FROM `creature_template_addon` WHERE `entry` IN (17539,30652,30653,30654); +INSERT INTO `creature_template_addon` (`entry`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(17539,0,0,257,0,NULL), -- Totem of Wrath I +(30652,0,0,257,0,NULL), -- Totem of Wrath II +(30653,0,0,257,0,NULL), -- Totem of Wrath III +(30654,0,0,1,0,NULL); -- Totem of Wrath IV + +DELETE FROM `spell_group` WHERE `spell_id`=30708; -- Unneeded stack rules |