From d4c449a5069f9d19ebb004252c02b6548702d6b6 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Sun, 27 Nov 2011 20:05:38 +0000 Subject: [PATCH] Fix Fearscape git-svn-id: http://svn.net-core.org/repos/t-engine4@4675 51575b47-30f0-44d4-a5cc-537603b46e54 --- .../tome/data/talents/corruptions/shadowflame.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/game/modules/tome/data/talents/corruptions/shadowflame.lua b/game/modules/tome/data/talents/corruptions/shadowflame.lua index 121dd58dea..2ccad26424 100644 --- a/game/modules/tome/data/talents/corruptions/shadowflame.lua +++ b/game/modules/tome/data/talents/corruptions/shadowflame.lua @@ -190,16 +190,16 @@ newTalent{ target:setTarget(self) target.demon_plane_trapper = self target.demon_plane_on_die = target.on_die - target.on_die = function(...) - target.demon_plane_trapper:forceUseTalent(self.T_DEMON_PLANE, {ignore_energy=true}) - if target.demon_plane_on_die then target.demon_plane_on_die(...) end - target.on_die, target.demon_plane_on_die = target.demon_plane_on_die, nil + target.on_die = function(self, ...) + self.demon_plane_trapper:forceUseTalent(self.T_DEMON_PLANE, {ignore_energy=true}) + if self.demon_plane_on_die then self:demon_plane_on_die(...) end + self.on_die, self.demon_plane_on_die = self.demon_plane_on_die, nil end self.demon_plane_on_die = self.on_die - self.on_die = function(...) + self.on_die = function(self, ...) self:forceUseTalent(self.T_DEMON_PLANE, {ignore_energy=true}) - if self.demon_plane_on_die then self.demon_plane_on_die(...) end + if self.demon_plane_on_die then self:demon_plane_on_die(...) end self.on_die, self.demon_plane_on_die = self.demon_plane_on_die, nil end -- GitLab