From 0577f60df65022ef844c7cab38818ef2bb75cf66 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Mon, 6 Dec 2021 15:56:14 +0100 Subject: [PATCH] More crash fixes --- Content.Server/Interaction/InteractionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);