aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorAqua Deus <95978183+aquadeus@users.noreply.github.com>2024-11-17 14:14:41 +0100
committerGitHub <noreply@github.com>2024-11-17 14:14:41 +0100
commit6f79163fcbe5e4ca10edde1c242788108baff58d (patch)
tree1adc2f03567caf0b3b7c2b92a97e6e2f3e54f08f /sql/updates
parent407e1fb87cd5ef2701818124bbb0a58f0734bcda (diff)
Scripts/Spells: Fix proc of Frost Fever (#30250)
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/world/master/2024_11_17_00_world.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_11_17_00_world.sql b/sql/updates/world/master/2024_11_17_00_world.sql
new file mode 100644
index 00000000000..2ba75476211
--- /dev/null
+++ b/sql/updates/world/master/2024_11_17_00_world.sql
@@ -0,0 +1,7 @@
+DELETE FROM `spell_proc` WHERE `SpellId` IN (195621);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(195621,0x00,15,0x00000000,0x04000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0,0,0,0); -- Frost Fever
+
+DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dk_frost_fever_proc';
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(195621, 'spell_dk_frost_fever_proc');