Skip to content
Snippets Groups Projects
Commit 4dab33f3 authored by Eric Wykoff's avatar Eric Wykoff
Browse files

fix

parent fc272396
No related branches found
No related tags found
1 merge request!123Chrono wrap up
......@@ -268,7 +268,7 @@ newTalent{
range = 0,
radius = function(self, t) return math.floor(self:combatTalentScale(t, 1, 2)) end,
target = function(self, t)
return {type="ball", range=100, radius=self:getTalentRadius(t), selffire=false, talent=t}
return {type="ball", range=100, radius=self:getTalentRadius(t), friendlyfire=false, talent=t}
end,
getDuration = function(self, t) return getExtensionModifier(self, t, math.floor(self:combatTalentScale(t, 2, 3))) end,
getChance = function(self, t) return 2 + math.floor(self:combatTalentScale(t, 2, 10)) end,
......
......@@ -99,7 +99,6 @@ newTalent{
if rng.percent(t.getChance(self, t)) then
if not self:isTalentCoolingDown(t.id) then
-- Warp Burst
local tgts = 0
local tg = self:getTalentTarget(t)
self:project(tg, target.x, target.y, function(px, py, tg, self)
local target = game.level.map(px, py, Map.ACTOR)
......
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