diff --git a/game/modules/tome/data/talents/spells/phantasm.lua b/game/modules/tome/data/talents/spells/phantasm.lua index a28952d72b5fb69a1ecd13d2d617669b889ffcbc..949396a22938c794a766f9dcb322b876d14d007b 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