mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 19:06:49 +01:00
Scripts: improved script for Slipstream Landing Zone and used a own copy of it for the Wind Tunnels in the Lost City of the Tol'Vir
* added a missing scriptname to a eject all passenger spell
This commit is contained in:
13
sql/updates/world/custom/custom_2018_07_23_02_world.sql
Normal file
13
sql/updates/world/custom/custom_2018_07_23_02_world.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
-- Creature Wind Tunnel Landing Zone 48097
|
||||
SET @ENTRY := 48097;
|
||||
UPDATE `creature_template` SET `AIName`="", `ScriptName`= 'npc_lct_wind_tunnel_landing_zone' WHERE `entry`= @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
|
||||
-- Creature Wind Tunnel 48092
|
||||
SET @ENTRY := 48092;
|
||||
UPDATE `creature_template` SET `AIName`="", `ScriptName`= 'npc_lct_wind_tunnel' WHERE `entry`= @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id`= 79737;
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(79737, 'spell_gen_eject_all_passengers');
|
||||
Reference in New Issue
Block a user