Bluespace lockers fix fix (#13579)

This commit is contained in:
Chief-Engineer
2023-01-18 01:59:47 -06:00
committed by GitHub
parent 8e625fe88a
commit 49f363b89e

View File

@@ -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<BluespaceLockerComponent>(lockerUid);
return null;