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

@@ -436,7 +436,7 @@ public sealed partial class PathfindingSystem
// var isBorder = x < 0 || y < 0 || x == ChunkSize - 1 || y == ChunkSize - 1;
tileEntities.Clear();
var available = _lookup.GetEntitiesIntersecting(tile, flags: LookupFlags.Dynamic | LookupFlags.Static);
var available = _lookup.GetLocalEntitiesIntersecting(tile, flags: LookupFlags.Dynamic | LookupFlags.Static);
foreach (var ent in available)
{