Skip to content
Snippets Groups Projects
Commit 963907db authored by DarkGod's avatar DarkGod
Browse files

Phase Door and Teleport respect teleport immunity

parent 1fb10003
No related branches found
No related tags found
No related merge requests found
......@@ -79,9 +79,9 @@ newTalent{
end
end
target = target or self
if target ~= self and target:canBe("teleport") then
if target ~= self then
local hit = self:checkHit(self:combatSpellpower(), target:combatSpellResist() + (target:attr("continuum_destabilization") or 0))
if not hit then
if not target:canBe("teleport") or not hit then
game.logSeen(target, "The spell fizzles!")
return true
end
......@@ -188,9 +188,9 @@ newTalent{
end
end
target = target or self
if target ~= self and target:canBe("teleport") then
if target ~= self then
local hit = self:checkHit(self:combatSpellpower(), target:combatSpellResist() + (target:attr("continuum_destabilization") or 0))
if not hit then
if not target:canBe("teleport") or not hit then
game.logSeen(target, "The spell fizzles!")
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