diff --git a/Content.Server/Resist/EscapeInventorySystem.cs b/Content.Server/Resist/EscapeInventorySystem.cs index 43012d8b7e..77a837587a 100644 --- a/Content.Server/Resist/EscapeInventorySystem.cs +++ b/Content.Server/Resist/EscapeInventorySystem.cs @@ -9,6 +9,7 @@ using Content.Shared.DoAfter; using Content.Shared.Movement.Events; using Content.Shared.Interaction.Events; using Content.Shared.Resist; +using Content.Server.Storage.Components; namespace Content.Server.Resist; @@ -59,7 +60,7 @@ public sealed class EscapeInventorySystem : EntitySystem } // Uncontested - if (HasComp(container.Owner) || HasComp(container.Owner)) + if (HasComp(container.Owner) || HasComp(container.Owner) || HasComp(container.Owner)) AttemptEscape(uid, container.Owner, component); }