From 49f363b89e5c9335cc9e2c5f587b31604cfb3bd7 Mon Sep 17 00:00:00 2001 From: Chief-Engineer <119664036+Chief-Engineer@users.noreply.github.com> Date: Wed, 18 Jan 2023 01:59:47 -0600 Subject: [PATCH] Bluespace lockers fix fix (#13579) --- Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs index ea4b5e1d06..9feeaa168c 100644 --- a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs +++ b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs @@ -244,7 +244,7 @@ public sealed class BluespaceLockerSystem : EntitySystem // If there are no possible link targets and no links, return null if (component.BluespaceLinks.Count == 0) { - if (component.MinBluespaceLinks == 0 && init) + if (component.MinBluespaceLinks == 0 && !init) RemComp(lockerUid); return null;