diff --git a/Content.Server/Interaction/InteractionSystem.cs b/Content.Server/Interaction/InteractionSystem.cs index be13f7e538..5c304801b3 100644 --- a/Content.Server/Interaction/InteractionSystem.cs +++ b/Content.Server/Interaction/InteractionSystem.cs @@ -184,6 +184,9 @@ namespace Content.Server.Interaction if (!EntityManager.TryGetEntity(uid, out var used)) return false; + if (user.IsInContainer()) + return false; + InteractionActivate(user, used); return true; }