diff options
| author | Teleqraph <nyrdeveloper@gmail.com> | 2022-02-11 00:12:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-11 00:12:40 +0100 |
| commit | 5b02c53fc568edd96ab557a8dd4d0195bcc9ec8c (patch) | |
| tree | 8694dc5195952628ba4f6b0f667550f64f7aedb0 /sql | |
| parent | c69e0036959dac5866f00e3e0c81e90dd681f125 (diff) | |
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
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2022_02_10_02_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_02_10_02_world.sql b/sql/updates/world/master/2022_02_10_02_world.sql new file mode 100644 index 00000000000..78e963a444d --- /dev/null +++ b/sql/updates/world/master/2022_02_10_02_world.sql @@ -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 |
