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

fix arrow echoes targeting

parent 18a47ab1
No related branches found
No related tags found
1 merge request!191More fixes
......@@ -294,9 +294,9 @@ newTalent{
-- Grab our target so we can set our echo
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 if swap == true then doWardenWeaponSwap(self, t, "blade") end return nil end
local __, x, y = self:canProject(tg, x, y)
-- Sanity check
if not self:hasLOS(x, y) then
......
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