DB/Spell Bonus Data: Fix more spell power stacking exploits (items & enchants)

Thanks Hitplusone, amort and SignFinder for the list
Closes #1701
This commit is contained in:
kaelima
2012-04-12 02:12:07 +02:00
parent 40309110ac
commit 2b2ebfaac0
2 changed files with 9 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
-- Druid
UPDATE `spell_bonus_data` SET `direct_bonus`=0,`dot_bonus`=0 WHERE `entry` IN (779,1822,60089);
DELETE FROM `spell_bonus_data` WHERE `entry` IN (1079,9007,22568);
INSERT INTO `spell_bonus_data` VALUES
INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
(1079,0,0,-1,-1, 'Druid - Rip'),
(9007,0,0,-1,-1, 'Druid - Pounce Bleed'),
(22568,0,0,-1,-1, 'Druid - Ferocious Bite');

View File

@@ -0,0 +1,8 @@
-- Fixes some spell power stacking exploits
DELETE FROM `spell_bonus_data` WHERE `entry` IN (44525,18798,16614,7712,13897);
INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
(44525,0,0,-1,-1, 'Enchant Weapon - Icebreaker'),
(18798,0,0,-1,-1, 'Item - Freezing Band'),
(16614,0,0,-1,-1, 'Item - Storm Gauntlets'),
(7712,0,0,-1,-1, 'Item - Fiery Retributer | Blazefury Medallion'),
(13897,0,0,-1,-1, 'Enchant Weapon - Fiery Weapon');