From e2de5c87aaa33f352b1c7b9df114bcb2e79fdc5c Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Wed, 28 Nov 2012 13:03:12 +0000 Subject: [PATCH] Zigur patrols will be friendly if you know antimagic, even if you knew spells before (like a Shalore) git-svn-id: http://svn.net-core.org/repos/t-engine4@5857 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 3e11bc9e47..dd39304aef 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -1186,7 +1186,7 @@ function _M:reactionToward(target, no_reflection) if target == self and self:attr("encased_in_ice") then return -100 end -- Neverending hatred - if self:attr("hates_arcane") and target:attr("has_arcane_knowledge") then return -100 end + if self:attr("hates_arcane") and target:attr("has_arcane_knowledge") and not target:attr("forbid_arcane") then return -100 end -- If self or target is a summon bound to a master's will, use the master instead if self.summoner then return self.summoner:reactionToward(target, no_reflection) end -- GitLab