From b2837c49b37a4ebc8efc95e7e3139cb477a74382 Mon Sep 17 00:00:00 2001 From: Shibari <ShibariTOME@Gmail.com> Date: Mon, 12 Nov 2018 18:16:51 -0500 Subject: [PATCH] Fix Skeleton racial working on type other --- 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 1a62f395bf..2058729d5e 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -7096,7 +7096,7 @@ function _M:on_set_temporary_effect(eff_id, e, p) end end - if e.status == "detrimental" and self:knowTalent(self.T_RESILIENT_BONES) then + if e.status == "detrimental" and e.type ~= "other" and self:knowTalent(self.T_RESILIENT_BONES) then p.dur = math.ceil(p.dur * (1 - self:callTalent(self.T_RESILIENT_BONES,"durresist"))) end if e.status == "detrimental" and e.type ~= "other" and self:attr("reduce_detrimental_status_effects_time") then -- GitLab