From fed15b0330b277ff641bebe6d8b8faaec58be653 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:23:25 +1100 Subject: [PATCH] Fix master (#23656) Proximity didn't pass CI. --- .../ProximityDetection/Components/ProximityDetectorComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs index a46ea1a81f..09cb7f06d5 100644 --- a/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs +++ b/Content.Shared/ProximityDetection/Components/ProximityDetectorComponent.cs @@ -21,7 +21,7 @@ public sealed partial class ProximityDetectorComponent : Component /// Note: RequireAll is only supported for tags, all components are required to count as a match! /// [DataField( required: true), AutoNetworkedField, ViewVariables(VVAccess.ReadWrite)] - public EntityWhitelist Criteria = default!; + public EntityWhitelist Criteria = new(); /// /// Found Entity -- 2.51.2