diff --git a/Content.Server/ADT/Hemophilia/HemophiliaSystem.cs b/Content.Server/ADT/Hemophilia/HemophiliaSystem.cs index eb84218b8e0..9092cc66a14 100644 --- a/Content.Server/ADT/Hemophilia/HemophiliaSystem.cs +++ b/Content.Server/ADT/Hemophilia/HemophiliaSystem.cs @@ -1,7 +1,7 @@ using Content.Server.Body.Components; -using Content.Shared.Traits; +using Content.Shared.ADT.Traits; -namespace Content.Server.Hemophilia; +namespace Content.Server.ADT.Hemophilia; public sealed partial class HemophiliaSystem : EntitySystem { diff --git a/Content.Server/Body/Components/BloodstreamComponent.cs b/Content.Server/Body/Components/BloodstreamComponent.cs index b9b3c16e864..2eb356dc0e9 100644 --- a/Content.Server/Body/Components/BloodstreamComponent.cs +++ b/Content.Server/Body/Components/BloodstreamComponent.cs @@ -9,7 +9,7 @@ using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -using Content.Server.Hemophilia; +using Content.Server.ADT.Hemophilia; namespace Content.Server.Body.Components { diff --git a/Content.Shared/ADT/hemophilia/HemophiliaComponent.cs b/Content.Shared/ADT/hemophilia/HemophiliaComponent.cs index 2a82c95013d..30ed792e1b1 100644 --- a/Content.Shared/ADT/hemophilia/HemophiliaComponent.cs +++ b/Content.Shared/ADT/hemophilia/HemophiliaComponent.cs @@ -1,4 +1,4 @@ -namespace Content.Shared.Traits; +namespace Content.Shared.ADT.Traits; [RegisterComponent] public sealed partial class HemophiliaComponent : Component