Fix another explosion error (#9325)

This commit is contained in:
Leon Friedrich
2022-07-02 03:33:02 +12:00
committed by GitHub
parent 348c653a02
commit fcba784379

View File

@@ -773,7 +773,7 @@ sealed class Explosion
foreach (var (grid, list) in _tileUpdateDict) foreach (var (grid, list) in _tileUpdateDict)
{ {
if (list.Count > 0) if (list.Count > 0 && _entMan.EntityExists(grid.GridEntityId))
{ {
grid.SetTiles(list); grid.SetTiles(list);
} }