Skip to content

Commit 37416f0

Browse files
blinkyscAriel Bastos
andauthored
fix(DB/Spell): Fix Killing Machine PPM values for ranks 3-5 (azerothcore#24866)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com> Co-authored-by: Ariel Bastos <ariel@arielbastos.com>
1 parent e28881d commit 37416f0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
-- Fix Killing Machine PPM values for ranks 3-5
2+
-- Previous values (1, 2, 4, 6, 8) used non-linear scaling
3+
-- Correct values (1, 2, 3, 4, 5) use linear scaling matching tooltip
4+
-- Formula: attackSpeed * talentRank / 60, yielding talentRank PPM
5+
6+
UPDATE `spell_proc` SET `ProcsPerMinute` = 3 WHERE `SpellId` = 51128; -- Killing Machine Rank 3
7+
UPDATE `spell_proc` SET `ProcsPerMinute` = 4 WHERE `SpellId` = 51129; -- Killing Machine Rank 4
8+
UPDATE `spell_proc` SET `ProcsPerMinute` = 5 WHERE `SpellId` = 51130; -- Killing Machine Rank 5

0 commit comments

Comments
 (0)