diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index b15ae04525..70117a4e40 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -307,7 +307,7 @@ namespace Content.Server.Atmos.EntitySystems { // Not all grids have atmospheres. if (!TryComp(grid, out GasTileOverlayComponent? overlay)) - return; + continue; List dataToSend = new(); ev.UpdatedChunks[grid] = dataToSend; @@ -322,7 +322,9 @@ namespace Content.Server.Atmos.EntitySystems if (previousChunks != null && previousChunks.Contains(index) && value.LastUpdate != curTick) + { continue; + } dataToSend.Add(value); }