diff --git a/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs b/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs index b6d082f836..8a2b29454a 100644 --- a/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs +++ b/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs @@ -1,7 +1,8 @@ +using Content.Server._CP14.DeviceLinking.Components; using Content.Server.DeviceLinking.Systems; -using Content.Server.Storage.Components; using Content.Shared._CP14.DeviceLinking; using Content.Shared.Placeable; +using Content.Shared.Storage.Components; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Physics.Components; @@ -17,28 +18,28 @@ public sealed class CP14PressurePlateSystem : EntitySystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnItemPlaced); - SubscribeLocalEvent(OnItemRemoved); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnItemPlaced); + SubscribeLocalEvent(OnItemRemoved); } - private void OnInit(Entity plate, ref ComponentInit args) + private void OnInit(Entity plate, ref ComponentInit args) { _signal.EnsureSourcePorts(plate, plate.Comp.PressedPort, plate.Comp.ReleasedPort); _appearance.SetData(plate, PressurePlateVisuals.Pressed, false); } - private void OnItemRemoved(Entity plate, ref ItemRemovedEvent args) + private void OnItemRemoved(Entity plate, ref ItemRemovedEvent args) { UpdateState(plate); } - private void OnItemPlaced(Entity plate, ref ItemPlacedEvent args) + private void OnItemPlaced(Entity plate, ref ItemPlacedEvent args) { UpdateState(plate); } - private void UpdateState(Entity plate) + private void UpdateState(Entity plate) { if (!TryComp(plate, out var itemPlacer)) return; diff --git a/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs b/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs index 9db5f9812f..7f1c7d459f 100644 --- a/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs +++ b/Content.Server/_CP14/Trading/CP14TradingPlatformSystem.cs @@ -1,6 +1,5 @@ using Content.Server._CP14.Currency; using Content.Server.Cargo.Systems; -using Content.Server.Storage.Components; using Content.Shared._CP14.Trading; using Content.Shared._CP14.Trading.Components; using Content.Shared._CP14.Trading.Prototypes; @@ -9,6 +8,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Placeable; using Content.Shared.Popups; using Content.Shared.Storage; +using Content.Shared.Storage.Components; using Content.Shared.Tag; using Content.Shared.UserInterface; using Robust.Server.GameObjects; diff --git a/Content.Server/_CP14/Vampire/CP14VampireSystem.cs b/Content.Server/_CP14/Vampire/CP14VampireSystem.cs index 89536b4366..ba593a1ccf 100644 --- a/Content.Server/_CP14/Vampire/CP14VampireSystem.cs +++ b/Content.Server/_CP14/Vampire/CP14VampireSystem.cs @@ -1,5 +1,4 @@ using System.Text; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; @@ -8,6 +7,7 @@ using Content.Server.Temperature.Systems; using Content.Shared._CP14.DayCycle; using Content.Shared._CP14.Vampire; using Content.Shared._CP14.Vampire.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Examine; using Content.Shared.FixedPoint; using Content.Shared.Ghost;