fix: Fixes null enumerable compile erorr (#1549)

This commit is contained in:
Kamron Batman 2023-10-15 11:39:00 -07:00 committed by GitHub
parent d57f1fecc1
commit e2f5728258
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View file

@ -244,7 +244,7 @@ public class TileMatrix
{
var eable = _map.GetMultiTilesAt(x, y);
if (eable == Map.NullEnumerable<StaticTile[]>.Instance)
if (eable == PooledEnumeration.NullEnumerable<StaticTile[]>.Instance)
{
return tiles[x & 0x7][y & 0x7];
}