From a8d010d6a3e4d2881041e70996490b15665edf8e Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 11 Jan 2022 07:43:58 +1100 Subject: [PATCH] Don't log missing on tryanchor pullable resolves (#6109) --- Content.Server/Construction/AnchorableSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Construction/AnchorableSystem.cs b/Content.Server/Construction/AnchorableSystem.cs index 358379a621..a86d330186 100644 --- a/Content.Server/Construction/AnchorableSystem.cs +++ b/Content.Server/Construction/AnchorableSystem.cs @@ -77,7 +77,7 @@ namespace Content.Server.Construction return false; // Optional resolves. - Resolve(uid, ref pullable); + Resolve(uid, ref pullable, false); if (!Resolve(usingUid, ref usingTool)) return false;