From bea8c1a0b8b9c9915657ecaeafcac8b8eb31ebd7 Mon Sep 17 00:00:00 2001 From: TemporalOroboros Date: Tue, 30 Jul 2024 12:31:55 -0700 Subject: [PATCH] Relocate TemperatureProtectionComponent (#30437) Moves it from the atmos module to the temperature module where it is actually used. --- .../Components/TemperatureProtectionComponent.cs | 2 +- Content.Server/Temperature/Systems/TemperatureSystem.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) rename Content.Server/{Atmos => Temperature}/Components/TemperatureProtectionComponent.cs (92%) 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; -- 2.52.0