Skip to content
Snippets Groups Projects
Commit bf933163 authored by Chris Davidson's avatar Chris Davidson
Browse files

Fix

parent 6fee813d
No related branches found
No related tags found
1 merge request!5111.6 Misc
......@@ -2104,8 +2104,8 @@ function _M:combatTalentStatDamage(t, stat, base, max, no_dr)
local dam = (base + (self:getStat(stat))) * ((math.sqrt(self:getTalentLevel(t)) - 1) * 0.8 + 1) * mod
if not no_dr then
dam = dam * (1 - math.log10(dam * 2) / 7)
dam = dam ^ (1 / 1.04)
end
dam = dam ^ (1 / 1.04)
return self:rescaleDamage(dam)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment