aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/3.3.5/2021_04_25_00_world.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_04_25_00_world.sql b/sql/updates/world/3.3.5/2021_04_25_00_world.sql
new file mode 100644
index 00000000000..567676f5185
--- /dev/null
+++ b/sql/updates/world/3.3.5/2021_04_25_00_world.sql
@@ -0,0 +1,13 @@
+-- delete non generic spell script for npc_wild_wyrm
+DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_eject_passenger_wild_wyrm';
+
+-- add "special" generic spell script for "Eject Passenger 1"
+-- the spell script "spell_eject_passenger_wild_wyrm" used this spell too
+DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_gen_eject_passenger_1';
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(60603, 'spell_gen_eject_passenger_1');
+
+-- add "special" generic spell script for "Eject Passenger 3"
+DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_gen_eject_passenger_3';
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(52205, 'spell_gen_eject_passenger_3');