From 08acba84c28137c05eb13220c5302b96b918b70b Mon Sep 17 00:00:00 2001 From: DarkGod <darkgod@net-core.org> Date: Fri, 7 Aug 2020 01:54:17 +0200 Subject: [PATCH] Phantasmal Shield does not retaliate to self inflicted damage --- game/modules/tome/data/talents/spells/phantasm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/modules/tome/data/talents/spells/phantasm.lua b/game/modules/tome/data/talents/spells/phantasm.lua index a28952d72b..949396a229 100644 --- a/game/modules/tome/data/talents/spells/phantasm.lua +++ b/game/modules/tome/data/talents/spells/phantasm.lua @@ -86,7 +86,7 @@ newTalent{ callbackOnHit = function(self, t, cb, src, dt) local p = self:isTalentActive(t.id) if not p then return end - if cb.value <= 0 then return end + if cb.value <= 0 or src == self then return end if rng.percent(t.getEvade(self, t)) then game:delayedLogDamage(src, self, 0, ("#YELLOW#(%d ignored)#LAST#"):format(cb.value), false) cb.value = 0 -- GitLab