diff --git a/Content.Client/Outline/InteractionOutlineSystem.cs b/Content.Client/Outline/InteractionOutlineSystem.cs index de5751ff62..b456db7c4b 100644 --- a/Content.Client/Outline/InteractionOutlineSystem.cs +++ b/Content.Client/Outline/InteractionOutlineSystem.cs @@ -134,7 +134,7 @@ public sealed class InteractionOutlineSystem : EntitySystem } var inRange = false; - if (localPlayer.ControlledEntity != null && entityToClick != null) + if (localPlayer.ControlledEntity != null && !Deleted(entityToClick)) { inRange = _interactionSystem.InRangeUnobstructed(localPlayer.ControlledEntity.Value, entityToClick.Value); }