]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix some atmos warnings (#36157)
authorJ <billsmith116@gmail.com>
Sun, 30 Mar 2025 01:12:14 +0000 (01:12 +0000)
committerGitHub <noreply@github.com>
Sun, 30 Mar 2025 01:12:14 +0000 (18:12 -0700)
Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs
Content.Server/Atmos/Piping/Unary/EntitySystems/GasPortableSystem.cs

index a80959b7b4a633882667afb8985e4067fd36c109..3c3d8f15091f8a9fcabfe2f4cc4cbb7ad7c5120e 100644 (file)
@@ -1,8 +1,7 @@
-using Content.Shared.Atmos;
+using Content.Shared.Atmos;
 using Content.Shared.Atmos.Components;
 using Content.Shared.Atmos.Piping.Binary.Components;
 using Content.Shared.IdentityManagement;
-using Content.Shared.Localizations;
 using JetBrains.Annotations;
 using Robust.Client.UserInterface;
 
index 128754bbf8c4f54b60574ae3501e0b62a52fb864..c277352b6fb95521389db08bccf9161de3ae41aa 100644 (file)
@@ -1,10 +1,8 @@
 using System.Diagnostics.CodeAnalysis;
 using Content.Server.Atmos.Piping.Binary.Components;
 using Content.Server.Atmos.Piping.Unary.Components;
-using Content.Server.NodeContainer;
 using Content.Server.NodeContainer.EntitySystems;
 using Content.Server.NodeContainer.Nodes;
-using Content.Shared.Atmos.Piping.Unary.Components;
 using Content.Shared.Construction.Components;
 using JetBrains.Annotations;
 using Robust.Shared.Map;
@@ -16,7 +14,6 @@ namespace Content.Server.Atmos.Piping.Unary.EntitySystems
     public sealed class GasPortableSystem : EntitySystem
     {
         [Dependency] private readonly SharedMapSystem _mapSystem = default!;
-        [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
         [Dependency] private readonly NodeContainerSystem _nodeContainer = default!;
 
         public override void Initialize()