Entitylookup method renames (#23519)

This commit is contained in:
metalgearsloth
2024-01-14 19:10:38 +11:00
committed by GitHub
parent 9063cfe454
commit 1f3a29c092
6 changed files with 6 additions and 6 deletions

View File

@@ -177,7 +177,7 @@ public sealed partial class BlockingSystem : EntitySystem
var playerTileRef = xform.Coordinates.GetTileRef();
if (playerTileRef != null)
{
var intersecting = _lookup.GetEntitiesIntersecting(playerTileRef.Value, 0f);
var intersecting = _lookup.GetLocalEntitiesIntersecting(playerTileRef.Value, 0f);
var mobQuery = GetEntityQuery<MobStateComponent>();
foreach (var uid in intersecting)
{