diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs index 1fbb4f0c7d..03052e17df 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Hotspot.cs @@ -108,10 +108,11 @@ namespace Content.Server.Atmos.EntitySystems { Volume = exposedVolume * 25f, Temperature = exposedTemperature, - SkippedFirstProcess = tile.CurrentCycle > gridAtmosphere.UpdateCounter + SkippedFirstProcess = tile.CurrentCycle > gridAtmosphere.UpdateCounter, + Valid = true, + State = 1 }; - tile.Hotspot.Start(); AddActiveTile(gridAtmosphere, tile); gridAtmosphere.HotspotTiles.Add(tile); diff --git a/Content.Server/Atmos/Hotspot.cs b/Content.Server/Atmos/Hotspot.cs index 4597813c6f..36d24c03b3 100644 --- a/Content.Server/Atmos/Hotspot.cs +++ b/Content.Server/Atmos/Hotspot.cs @@ -24,11 +24,5 @@ namespace Content.Server.Atmos /// [ViewVariables] public byte State; - - public void Start() - { - Valid = true; - State = 1; - } } } diff --git a/Content.Shared/Atmos/Atmospherics.cs b/Content.Shared/Atmos/Atmospherics.cs index b2736ebf68..53d34fa40c 100644 --- a/Content.Shared/Atmos/Atmospherics.cs +++ b/Content.Shared/Atmos/Atmospherics.cs @@ -1,6 +1,7 @@ using Robust.Shared.Maths; using Robust.Shared.Serialization; using System; +// ReSharper disable InconsistentNaming namespace Content.Shared.Atmos {