diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua index cd435792f0e0e1f103096b0ea35737f534095f5f..f87cce604ca0262ddd40b579e1f76d0fb28ef1c2 100644 --- a/game/modules/tome/class/Actor.lua +++ b/game/modules/tome/class/Actor.lua @@ -2364,7 +2364,7 @@ function _M:canBe(what) if what == "blind" and rng.percent(100 * (self:attr("blind_immune") or 0)) then return false end if what == "silence" and rng.percent(100 * (self:attr("silence_immune") or 0)) then return false end if what == "disarm" and rng.percent(100 * (self:attr("disarm_immune") or 0)) then return false end - if what == "pin" and rng.percent(100 * (self:attr("pin_immune") or 0)) then return false end + if what == "pin" and rng.percent(100 * (self:attr("pin_immune") or 0)) and not self:("levitation") then return false end if what == "stun" and rng.percent(100 * (self:attr("stun_immune") or 0)) then return false end if what == "fear" and rng.percent(100 * (self:attr("fear_immune") or 0)) then return false end if what == "knockback" and (rng.percent(100 * (self:attr("knockback_immune") or 0)) or self:attr("never_move")) then return false end