diff options
author | Killyana <morphone1@gmail.com> | 2015-09-29 21:15:19 +0200 |
---|---|---|
committer | MitchesD <majklprofik@seznam.cz> | 2015-10-31 11:05:31 +0100 |
commit | 2b059dba9a61459dedb5e6bb284356a886d798ef (patch) | |
tree | ceab49105711a9b45c00c2429b4cc41a0c5bf408 | |
parent | 455ea9a3967bb4df063d51ed8a3dc7249fa992f5 (diff) |
DB/Npc: Niffelem Frost Giant and Frostworg
Remove wrong spawns and add vehicle accessories
(cherry picked from commit ba009ea2e2d13c0aa8a76df5bfead6f757ccddc3)
-rw-r--r-- | sql/updates/world/2015_10_31_18_world_2015_09_29_03.sql | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sql/updates/world/2015_10_31_18_world_2015_09_29_03.sql b/sql/updates/world/2015_10_31_18_world_2015_09_29_03.sql new file mode 100644 index 00000000000..74390f75e6d --- /dev/null +++ b/sql/updates/world/2015_10_31_18_world_2015_09_29_03.sql @@ -0,0 +1,18 @@ +-- + +DELETE FROM `creature` WHERE `id`=29558; +UPDATE `creature_template` SET `npcflag`=16777216 WHERE `entry` IN (29351, 29358); + +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` IN (29358, 29351); +INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `cast_flags`, `user_type`) VALUES +(29358,46598,0,0), +(29351,46598,0,0); + +DELETE FROM `vehicle_template_accessory` WHERE `entry` IN (29358, 29351); +INSERT INTO `vehicle_template_accessory` (`entry`,`accessory_entry`,`seat_id`,`minion`,`description`,`summontype`) VALUES +(29351,29558,0,1, 'Niffelem Frost Giant', 8), +(29351,29558,1,1, 'Niffelem Frost Giant', 8), +(29351,29558,2,1, 'Niffelem Frost Giant', 8), +(29351,29558,3,1, 'Niffelem Frost Giant', 8), +(29358,29558,0,1, 'Frostworg', 8), +(29358,29558,1,1, 'Frostworg', 8); |