From: TemporalOroboros Date: Tue, 30 Jul 2024 19:31:55 +0000 (-0700) Subject: Relocate TemperatureProtectionComponent (#30437) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=bea8c1a0b8b9c9915657ecaeafcac8b8eb31ebd7;p=space-station-14.git Relocate TemperatureProtectionComponent (#30437) Moves it from the atmos module to the temperature module where it is actually used. --- diff --git a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs similarity index 92% rename from Content.Server/Atmos/Components/TemperatureProtectionComponent.cs rename to Content.Server/Temperature/Components/TemperatureProtectionComponent.cs index bdee5ff514..437f0f8940 100644 --- a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs @@ -1,6 +1,6 @@ using Content.Server.Temperature.Systems; -namespace Content.Server.Atmos.Components; +namespace Content.Server.Temperature.Components; [RegisterComponent] [Access(typeof(TemperatureSystem))] diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 23c8cb6783..d33bf6e025 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Server.Administration.Logs; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Temperature.Components;