From f7b89daa747c95971d47e7c4af74ff675643208a Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Sun, 20 Jun 2021 11:42:37 +0200 Subject: [PATCH] Move ComputerUIActivatorSystem to Computer namespace. --- Content.Server/Botany/Seed.cs | 1 - .../EntitySystems => Computer}/ComputerUIActivatorSystem.cs | 6 +++--- Content.Server/Construction/Completions/DestroyEntity.cs | 1 - .../Solar/Components/SolarControlConsoleComponent.cs | 1 - 4 files changed, 3 insertions(+), 6 deletions(-) rename Content.Server/{Atmos/EntitySystems => Computer}/ComputerUIActivatorSystem.cs (92%) diff --git a/Content.Server/Botany/Seed.cs b/Content.Server/Botany/Seed.cs index b0043fdf78..44ce596024 100644 --- a/Content.Server/Botany/Seed.cs +++ b/Content.Server/Botany/Seed.cs @@ -3,7 +3,6 @@ using System; using System.Collections.Generic; using System.Linq; using Content.Server.Botany.Components; -using Content.Server.GameObjects.EntitySystems; using Content.Server.Plants; using Content.Shared.Atmos; using Content.Shared.Notification; diff --git a/Content.Server/Atmos/EntitySystems/ComputerUIActivatorSystem.cs b/Content.Server/Computer/ComputerUIActivatorSystem.cs similarity index 92% rename from Content.Server/Atmos/EntitySystems/ComputerUIActivatorSystem.cs rename to Content.Server/Computer/ComputerUIActivatorSystem.cs index 65b800d65d..d3fa2fa7f5 100644 --- a/Content.Server/Atmos/EntitySystems/ComputerUIActivatorSystem.cs +++ b/Content.Server/Computer/ComputerUIActivatorSystem.cs @@ -1,9 +1,9 @@ -using Content.Shared.Interaction; using Content.Server.GameObjects.Components; -using Robust.Shared.GameObjects; +using Content.Shared.Interaction; using JetBrains.Annotations; +using Robust.Shared.GameObjects; -namespace Content.Server.GameObjects.EntitySystems +namespace Content.Server.Computer { [UsedImplicitly] internal sealed class ComputerUIActivatorSystem : EntitySystem diff --git a/Content.Server/Construction/Completions/DestroyEntity.cs b/Content.Server/Construction/Completions/DestroyEntity.cs index cc94ebf1fd..bce60a667a 100644 --- a/Content.Server/Construction/Completions/DestroyEntity.cs +++ b/Content.Server/Construction/Completions/DestroyEntity.cs @@ -1,5 +1,4 @@ #nullable enable -using Content.Server.GameObjects.EntitySystems; using Content.Shared.Construction; using JetBrains.Annotations; using Robust.Shared.GameObjects; diff --git a/Content.Server/Solar/Components/SolarControlConsoleComponent.cs b/Content.Server/Solar/Components/SolarControlConsoleComponent.cs index 34d3bc1b9a..134564ac1c 100644 --- a/Content.Server/Solar/Components/SolarControlConsoleComponent.cs +++ b/Content.Server/Solar/Components/SolarControlConsoleComponent.cs @@ -2,7 +2,6 @@ using Content.Shared.Solar; using Content.Server.Solar.EntitySystems; using Content.Server.GameObjects.Components; -using Content.Server.GameObjects.EntitySystems; using Robust.Server.GameObjects; using Robust.Shared.GameObjects; using Robust.Shared.IoC;