Skip to content
Snippets Groups Projects
Commit 3e2bbb64 authored by DarkGod's avatar DarkGod
Browse files

Meteoric Crash can now crit (using the highest of spell or mind crit chance)

parent 430bf4ef
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,11 @@ uberTalent{
end
end
meteor(self, target.x, target.y, t.getDamage(self, t))
local dam = t.getDamage(self, t)
if self:combatMindCrit() > self:combatSpellCrit() then dam = self:mindCrit(dam)
else dam = self:spellCrit(dam)
end
meteor(self, target.x, target.y, dam)
return true
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