Quantcast

Fix rest of stacking damage buffs error.

Johnny C. Lam [06-10-13 - 21:34]
Fix rest of stacking damage buffs error.

Back out remainder of r814 that was causing errors with stacking damage
buffs.

git-svn-id: svn://svn.curseforge.net/wow/ovale/mainline/trunk@931 d5049fe3-3747-40f7-a4b5-f36d6801af5f
Filename
OvaleState.lua
diff --git a/OvaleState.lua b/OvaleState.lua
index dbdf8ff..54b2230 100644
--- a/OvaleState.lua
+++ b/OvaleState.lua
@@ -639,7 +639,7 @@ function OvaleState:GetDamageMultiplier(spellId)
 					count = select(3, self:GetAuraByGUID(playerGUID, auraSpellId, filter, nil, "player"))
 					if count and count > 0 then
 						-- Try to account for a stacking aura.
-						multiplier = 1 + (multiplier - 1) * count
+						-- multiplier = 1 + (multiplier - 1) * count
 						damageMultiplier = damageMultiplier * multiplier
 					end
 				end