Fix prisoners spawning at latejoin cryopods (#743)
This commit is contained in:
parent
a80ed207c4
commit
4414a65301
|
|
@ -26,6 +26,10 @@ public sealed class ContainerSpawnPointSystem : EntitySystem
|
|||
if (args.SpawnResult != null)
|
||||
return;
|
||||
|
||||
// DeltaV - Prevent spawnpoint overrides from being ignored
|
||||
if (args.DesiredSpawnPointType != null && args.DesiredSpawnPointType != SpawnPointType.Unset)
|
||||
return;
|
||||
|
||||
var query = EntityQueryEnumerator<ContainerSpawnPointComponent, ContainerManagerComponent, TransformComponent>();
|
||||
var possibleContainers = new List<Entity<ContainerSpawnPointComponent, ContainerManagerComponent, TransformComponent>>();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue