diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 8f0f52c7a3..d4c8342022 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -1121,6 +1121,9 @@ namespace Content.Shared.Interaction if (!Exists(uidA) || !Exists(uidB)) return; + if (Paused(uidA) || Paused(uidB.Value)) + return; + RaiseLocalEvent(uidA, new ContactInteractionEvent(uidB.Value)); RaiseLocalEvent(uidB.Value, new ContactInteractionEvent(uidA)); }