Code: Select all
getManaRatio = function(self, t) return 3 - math.max(self:combatTalentSpellDamage(t, 10, 200) / 100, 0.5) end,
Code: Select all
getManaRatio = function(self, t) return math.max(3 - self:combatTalentSpellDamage(t, 10, 200) / 100, 0.5) end,
Code: Select all
getManaRatio = function(self, t) return 3 - math.min(self:combatTalentSpellDamage(t, 10, 200) / 100, 2.5) end,