From 6bb1e58e77299ecb84e1ddd3b0cd20a1c11f0142 Mon Sep 17 00:00:00 2001 From: Kara D Date: Wed, 3 Nov 2021 14:33:00 -0700 Subject: [PATCH] Fix item construction using nearby anchored items (pipes) --- Content.Server/Construction/ConstructionSystem.Initial.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Construction/ConstructionSystem.Initial.cs b/Content.Server/Construction/ConstructionSystem.Initial.cs index 282cc97a9a..df2692eccd 100644 --- a/Content.Server/Construction/ConstructionSystem.Initial.cs +++ b/Content.Server/Construction/ConstructionSystem.Initial.cs @@ -77,7 +77,7 @@ namespace Content.Server.Construction } } - foreach (var near in IoCManager.Resolve().GetEntitiesInRange(user!, 2f, LookupFlags.Approximate | LookupFlags.IncludeAnchored)) + foreach (var near in IoCManager.Resolve().GetEntitiesInRange(user!, 2f, LookupFlags.Approximate)) { yield return near; }