fix: Fixes null enumerable compile erorr (#1549)
This commit is contained in:
parent
d57f1fecc1
commit
e2f5728258
4 changed files with 10 additions and 10 deletions
|
|
@ -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];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue