diff --git a/Content.Server/Interaction/InteractionSystem.cs b/Content.Server/Interaction/InteractionSystem.cs index 3883b7554a..8237cb3435 100644 --- a/Content.Server/Interaction/InteractionSystem.cs +++ b/Content.Server/Interaction/InteractionSystem.cs @@ -422,7 +422,7 @@ namespace Content.Server.Interaction if (InteractDoBefore(user, used, inRangeUnobstructed ? target : null, clickLocation, false)) return true; - if (target != null) + if (target != default) { var rangedMsg = new RangedInteractEvent(user, used, target, clickLocation); RaiseLocalEvent(target, rangedMsg);