diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index 0aba4c7577..274f05539a 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -42,7 +42,7 @@ private void ProcessHotspot( return; } - if (tile.ExcitedGroup != null) // backmen: gas + if(tile.ExcitedGroup != null) ExcitedGroupResetCooldowns(tile.ExcitedGroup); if ((tile.Hotspot.Temperature < Atmospherics.FireMinimumTemperatureToExist) || (tile.Hotspot.Volume <= 1f) @@ -92,14 +92,14 @@ private void ProcessHotspot( if (otherTile == null) continue; - if (!otherTile.Hotspot.Valid) // backmen: gas + if(!otherTile.Hotspot.Valid) HotspotExpose(gridAtmosphere, otherTile, radiatedTemperature, Atmospherics.CellVolume / 4); // backmen: gas } } } else { - tile.Hotspot.State = (byte)(tile.Hotspot.Volume > Atmospherics.CellVolume * 0.4f ? 2 : 1); // backmen: gas + tile.Hotspot.State = (byte) (tile.Hotspot.Volume > Atmospherics.CellVolume * 0.4f ? 2 : 1); } if (tile.Hotspot.Temperature > tile.MaxFireTemperatureSustained)