diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index 77b4781175..70b145512d 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -354,7 +354,7 @@ namespace Content.Server.Atmos.EntitySystems return; // Should this be a full component state or a delta-state? - if (args.FromTick <= component.CreationTick && args.FromTick <= component.ForceTick) + if (args.FromTick <= component.CreationTick || args.FromTick <= component.ForceTick) { args.State = new GasTileOverlayState(component.Chunks); return;