Clean up all missing EntitySystem proxy method uses (#38353)
This commit is contained in:
@@ -95,7 +95,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<MindContainerComponent>(entity))
|
||||
if (HasComp<MindContainerComponent>(entity))
|
||||
{
|
||||
if (!component.BehaviorProperties.TransportSentient)
|
||||
continue;
|
||||
@@ -312,7 +312,7 @@ public sealed class BluespaceLockerSystem : EntitySystem
|
||||
if (component.BehaviorProperties.TransportEntities || component.BehaviorProperties.TransportSentient)
|
||||
foreach (var entity in entityStorageComponent.Contents.ContainedEntities.ToArray())
|
||||
{
|
||||
if (EntityManager.HasComponent<MindContainerComponent>(entity))
|
||||
if (HasComp<MindContainerComponent>(entity))
|
||||
{
|
||||
if (!component.BehaviorProperties.TransportSentient)
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user