chore(DB): import pending files

Referenced commit(s): 343a33bd63
This commit is contained in:
github-actions[bot]
2026-03-01 17:11:31 +00:00
parent 343a33bd63
commit e1ebb7099d

View File

@@ -0,0 +1,7 @@
-- DB update 2026_03_01_05 -> 2026_03_01_06
-- Seal of Light (20165): Fix PPM 20 -> 10
UPDATE `spell_proc` SET `ProcsPerMinute` = 10 WHERE `SpellId` = 20165;
-- Flame Cap (28714): Add 6 PPM (was 100% with no spell_proc entry)
DELETE FROM `spell_proc` WHERE `SpellId` = 28714;
INSERT INTO `spell_proc` (`SpellId`, `ProcsPerMinute`, `SpellTypeMask`, `SpellPhaseMask`) VALUES (28714, 6, 1, 2);