mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Scripts/Spells: Fixed mage Blizzard (#27722)
* we do not have a dummy periodic aura to obtain our period, so we're setting 1s as it always ticks once per second. * haste doesn't affect Blizzard: https://us.forums.blizzard.com/en/wow/t/starfall-damage-doesn%E2%80%99t-scale-with-haste-why/854619
This commit is contained in:
8
sql/updates/world/master/2022_02_10_02_world.sql
Normal file
8
sql/updates/world/master/2022_02_10_02_world.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_trigger_chilled';
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_frostbolt';
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_blizzard_damage';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(116,'spell_mage_frostbolt'),
|
||||
(190357,'spell_mage_blizzard_damage');
|
||||
|
||||
UPDATE `areatrigger_create_properties` SET `TimeToTargetScale`=0, `ScriptName`='areatrigger_mage_blizzard', `VerifiedBuild`=42010 WHERE `Id`=4658; -- SpellId : 190356
|
||||
Reference in New Issue
Block a user