Log:
RatingBuster: Use the new StatLogic API
Modified:
trunk/RatingBuster/RatingBuster.lua
Modified: trunk/RatingBuster/RatingBuster.lua
==============================================================================
--- trunk/RatingBuster/RatingBuster.lua (original)
+++ trunk/RatingBuster/RatingBuster.lua Mon Sep 29 08:16:14 2008
@@ -3722,9 +3722,9 @@
if wowBuildNo >= '8982' and profileDB.enableAvoidanceDiminishingReturns
and ((statDataType == "diff1") or (statDataType == "diff2")) then
if calcData.name == "DODGE" then
- entry[statDataType] = StatLogic:GetDodgeGainAfterDR(entry[statDataType])
+ entry[statDataType] = StatLogic:GetAvoidanceGainAfterDR("DODGE", entry[statDataType])
elseif calcData.name == "PARRY" then
- entry[statDataType] = StatLogic:GetParryGainAfterDR(entry[statDataType])
+ entry[statDataType] = StatLogic:GetAvoidanceGainAfterDR("PARRY", entry[statDataType])
end
end
end