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

fixed warden's focus targeting

parent b29f6d17
No related branches found
No related tags found
1 merge request!191More fixes
......@@ -144,12 +144,10 @@ newTalent{
action = function(self, t)
-- Grab our target so we can set our effect
local tg = self:getTalentTarget(t)
local x, y, target = self:getTarget(tg)
local _, x, y = self:canProject(tg, self:getTarget(tg))
local target = game.level.map(x, y, game.level.map.ACTOR)
if not x or not y or not target then game.logPlayer(self, "You must pick a focus target.")return nil end
local __, x, y = self:canProject(tg, x, y)
game:playSoundNear(self, "talents/dispel")
if self:hasArcheryWeapon() then
-- Ranged attack
local targets = self:archeryAcquireTargets({type="bolt"}, {x=x, y=y, one_shot=true, no_energy = true})
......@@ -157,11 +155,6 @@ newTalent{
self:archeryShoot(targets, t, {type="bolt"}, {mult=t.getDamage(self, t)})
else
-- Melee attack
local tg = {type="hit", range=self:getTalentRange(t), talent=t}
local _, x, y = self:canProject(tg, self:getTarget(tg))
local target = game.level.map(x, y, game.level.map.ACTOR)
if not target then return nil end
self:attackTarget(target, nil, t.getDamage(self, t), 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