Skip to content
Snippets Groups Projects
Commit 2bbe373f authored by K'van's avatar K'van
Browse files

Range for Wave of Power is now always an integer; prevents display/targeting discrepancies.

parent c7c2d726
No related branches found
No related tags found
1 merge request!697Misc1.7.3
......@@ -79,7 +79,7 @@ newTalent{
tactical = { ATTACK = 2 },
requires_target = true,
is_melee = true,
range = function(self, t) return 2 + math.max(0, self:combatStatScale("str", 0.8, 8)) end,
range = function(self, t) return 2 + math.max(0, math.floor(self:combatStatScale("str", 0.8, 8))) end,
SecondStrikeChance = function(self, t, range)
return self:combatLimit(self:getTalentLevel(t)*range, 100, 15, 4, 70, 50)
end, -- 15% for TL 1.0 at range 4, 70% for TL 5.0 at range 10
......
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