From f5d3e1ad8bec516879f251878ee49f955af4707f Mon Sep 17 00:00:00 2001 From: Dvir Date: Mon, 17 Jun 2024 01:09:12 +0300 Subject: [PATCH] Move --- Content.Server/Speech/Components/GoblinAccentComponent.cs | 7 ------- .../_NF/Speech/Components/GoblinAccentComponent.cs | 8 ++++++++ .../Speech/Components/StreetpunkAccentComponent.cs | 2 +- .../{ => _NF}/Speech/EntitySystems/GoblinAccentSystem.cs | 8 ++++---- .../Speech/EntitySystems/StreetpunkAccentSystem.cs | 7 ++++--- 5 files changed, 17 insertions(+), 15 deletions(-) delete mode 100644 Content.Server/Speech/Components/GoblinAccentComponent.cs create mode 100644 Content.Server/_NF/Speech/Components/GoblinAccentComponent.cs rename Content.Server/{ => _NF}/Speech/Components/StreetpunkAccentComponent.cs (70%) rename Content.Server/{ => _NF}/Speech/EntitySystems/GoblinAccentSystem.cs (82%) rename Content.Server/{ => _NF}/Speech/EntitySystems/StreetpunkAccentSystem.cs (88%) diff --git a/Content.Server/Speech/Components/GoblinAccentComponent.cs b/Content.Server/Speech/Components/GoblinAccentComponent.cs deleted file mode 100644 index 2fb98e60a14..00000000000 --- a/Content.Server/Speech/Components/GoblinAccentComponent.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Server.Speech.EntitySystems; - -namespace Content.Server.Speech.Components; - -[RegisterComponent] -[Access(typeof(GoblinAccentSystem))] -public sealed partial class GoblinAccentComponent : Component {} diff --git a/Content.Server/_NF/Speech/Components/GoblinAccentComponent.cs b/Content.Server/_NF/Speech/Components/GoblinAccentComponent.cs new file mode 100644 index 00000000000..f5232494e92 --- /dev/null +++ b/Content.Server/_NF/Speech/Components/GoblinAccentComponent.cs @@ -0,0 +1,8 @@ +using Content.Server._NF.Speech.EntitySystems; + +namespace Content.Server._NF.Speech.Components; + +[RegisterComponent] +[Access(typeof(GoblinAccentSystem))] +public sealed partial class GoblinAccentComponent : Component +{ } diff --git a/Content.Server/Speech/Components/StreetpunkAccentComponent.cs b/Content.Server/_NF/Speech/Components/StreetpunkAccentComponent.cs similarity index 70% rename from Content.Server/Speech/Components/StreetpunkAccentComponent.cs rename to Content.Server/_NF/Speech/Components/StreetpunkAccentComponent.cs index 3eb045e42c8..b129b523b6d 100644 --- a/Content.Server/Speech/Components/StreetpunkAccentComponent.cs +++ b/Content.Server/_NF/Speech/Components/StreetpunkAccentComponent.cs @@ -1,4 +1,4 @@ -namespace Content.Server.Speech.Components +namespace Content.Server._NF.Speech.Components { [RegisterComponent] public sealed partial class StreetpunkAccentComponent : Component diff --git a/Content.Server/Speech/EntitySystems/GoblinAccentSystem.cs b/Content.Server/_NF/Speech/EntitySystems/GoblinAccentSystem.cs similarity index 82% rename from Content.Server/Speech/EntitySystems/GoblinAccentSystem.cs rename to Content.Server/_NF/Speech/EntitySystems/GoblinAccentSystem.cs index c86bbe3fbb3..0dd64246814 100644 --- a/Content.Server/Speech/EntitySystems/GoblinAccentSystem.cs +++ b/Content.Server/_NF/Speech/EntitySystems/GoblinAccentSystem.cs @@ -1,8 +1,8 @@ -using Content.Server.Speech.Components; -using Robust.Shared.Random; -using System.Text.RegularExpressions; +using Content.Server._NF.Speech.Components; +using Content.Server.Speech; +using Content.Server.Speech.EntitySystems; -namespace Content.Server.Speech.EntitySystems; +namespace Content.Server._NF.Speech.EntitySystems; public sealed class GoblinAccentSystem : EntitySystem { diff --git a/Content.Server/Speech/EntitySystems/StreetpunkAccentSystem.cs b/Content.Server/_NF/Speech/EntitySystems/StreetpunkAccentSystem.cs similarity index 88% rename from Content.Server/Speech/EntitySystems/StreetpunkAccentSystem.cs rename to Content.Server/_NF/Speech/EntitySystems/StreetpunkAccentSystem.cs index 0873e003a25..6acbc18dbd7 100644 --- a/Content.Server/Speech/EntitySystems/StreetpunkAccentSystem.cs +++ b/Content.Server/_NF/Speech/EntitySystems/StreetpunkAccentSystem.cs @@ -1,8 +1,9 @@ -using Content.Server.Speech.Components; -using Robust.Shared.Random; +using Content.Server._NF.Speech.Components; +using Content.Server.Speech; +using Content.Server.Speech.EntitySystems; using System.Text.RegularExpressions; -namespace Content.Server.Speech.EntitySystems; +namespace Content.Server._NF.Speech.EntitySystems; public sealed class StreetpunkAccentSystem : EntitySystem {