This commit is contained in:
ShadowCommander
2023-03-26 11:31:13 -07:00
committed by GitHub
parent 0e5dc41fe8
commit bfc4da9377
85 changed files with 1150 additions and 684 deletions

View File

@@ -86,7 +86,7 @@ public sealed class BluespaceLockerSystem : EntitySystem
if (component.BehaviorProperties.TransportEntities || component.BehaviorProperties.TransportSentient)
foreach (var entity in target.Value.storageComponent.Contents.ContainedEntities.ToArray())
{
if (EntityManager.HasComponent<MindComponent>(entity))
if (EntityManager.HasComponent<MindContainerComponent>(entity))
{
if (!component.BehaviorProperties.TransportSentient)
continue;
@@ -297,7 +297,7 @@ public sealed class BluespaceLockerSystem : EntitySystem
if (component.BehaviorProperties.TransportEntities || component.BehaviorProperties.TransportSentient)
foreach (var entity in entityStorageComponent.Contents.ContainedEntities.ToArray())
{
if (EntityManager.HasComponent<MindComponent>(entity))
if (EntityManager.HasComponent<MindContainerComponent>(entity))
{
if (!component.BehaviorProperties.TransportSentient)
continue;