From ba1ae262bb7e6f2a286e496b4256652fddbb7478 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Thu, 6 Jan 2011 12:11:09 +0000 Subject: [PATCH] Talents that do not take a turn to use are not affected by confusion effects git-svn-id: http://svn.net-core.org/repos/t-engine4@2291 51575b47-30f0-44d4-a5cc-537603b46e54 --- game/modules/tome/class/Actor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index 5623bbd662..d6613706f9 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -1537,7 +1537,7 @@ function _M:preUseTalent(ab, silent, fake) end -- Confused ? lose a turn! - if self:attr("confused") and not fake then + if self:attr("confused") and ab.no_energy ~= true and not fake then if rng.percent(self:attr("confused")) then if not silent then game.logSeen(self, "%s is confused and fails to use %s.", self.name:capitalize(), ab.name) end self:useEnergy() -- GitLab