diff options
author | Nay <dnpd.dd@gmail.com> | 2011-05-22 17:46:19 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2011-05-22 17:46:19 +0100 |
commit | 589fed54d15c9c769ef22c0b98dcaed68d8383be (patch) | |
tree | 69218e7905a971612b8f8fb46b60b6903d04103d | |
parent | 0704f037129baedc32337b939f04f9a523741822 (diff) |
DB/NPC: Add vehicle spells to Icefang (should (finally) fix quest Going Bearback)
-rw-r--r-- | sql/updates/world/2011_05_22_06_world_creature_template.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/2011_05_22_06_world_creature_template.sql b/sql/updates/world/2011_05_22_06_world_creature_template.sql new file mode 100644 index 00000000000..f4579e58ef2 --- /dev/null +++ b/sql/updates/world/2011_05_22_06_world_creature_template.sql @@ -0,0 +1,6 @@ +UPDATE `creature_template` SET `speed_run`=1.71429 WHERE `entry`=29598; -- Icefang +UPDATE `creature_template` SET `spell1`=54897, `spell2`=54907, `spell3`=54788 WHERE `entry`=29602; -- Icefang +-- Last spell (spell3) shouldn't be show to the client, core implementation of vehicle spells needs to change. +DELETE FROM `creature_template_addon` WHERE `entry`=29598; +INSERT INTO `creature_template_addon` (`entry`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(29598,0,0,1,0, NULL); -- Icefang |