aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2024-09-21 14:20:34 +0200
committerOvahlord <dreadkiller@gmx.de>2024-09-21 14:20:34 +0200
commit329b48e853fc1c5318882a7d627b86b1b6b60a40 (patch)
tree53be93866764f19f2d70ff4147e0a6a93a007cfd /sql
parentf2ff7fa68359724979c7c0c8085691d0aa383930 (diff)
Scripts/Spells: fixed mage Arcane Missiles
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/cata_classic/2024_09_21_01_world.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/cata_classic/2024_09_21_01_world.sql b/sql/updates/world/cata_classic/2024_09_21_01_world.sql
new file mode 100644
index 00000000000..067ef98ba22
--- /dev/null
+++ b/sql/updates/world/cata_classic/2024_09_21_01_world.sql
@@ -0,0 +1,9 @@
+DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_mage_offensive_state_dnd', 'spell_mage_arcane_missiles');
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(79684, 'spell_mage_offensive_state_dnd'),
+(79683, 'spell_mage_arcane_missiles');
+
+DELETE FROM `spell_proc` WHERE `SpellId` IN (79684, 79683);
+INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellPhaseMask`, `Charges`) VALUES
+(79684, 3, 0x0, 0x1, 0),
+(79683, 3, 0x800, 0x1, 1);