Core/Spells: moved Fingers of Frost charge dropping to AuraScript since it's actually stacks and not charges

This commit is contained in:
Ovahlord
2019-02-12 22:57:18 +01:00
parent 190a3258f3
commit 0c4da99fbf
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
UPDATE `spell_proc` SET `Charges`= 0 WHERE `SpellId`=44544;
DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_mage_fingers_of_frost_charges';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(44544, 'spell_mage_fingers_of_frost_charges');