fix(DB/Spells): Fix Seal of Light and Flame Cap proc rates (#24954)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
parent
52872c743f
commit
343a33bd63
1 changed files with 6 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
-- 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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue