From fcba784379bc1cf0417d6b30fafdbe7a0770d7c4 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 2 Jul 2022 03:33:02 +1200 Subject: [PATCH] Fix another explosion error (#9325) --- .../Explosion/EntitySystems/ExplosionSystem.Processing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs index def4f316ca..c097c96957 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.Processing.cs @@ -773,7 +773,7 @@ sealed class Explosion foreach (var (grid, list) in _tileUpdateDict) { - if (list.Count > 0) + if (list.Count > 0 && _entMan.EntityExists(grid.GridEntityId)) { grid.SetTiles(list); }