From c8c0821a23e714d732a0bbe5aaddbc1b460c5b3c Mon Sep 17 00:00:00 2001 From: Jessey van Hoeijen <114107545+LMSNoise@users.noreply.github.com> Date: Fri, 31 Jan 2025 15:43:07 +0100 Subject: [PATCH] Fix stunbaton component namespace (#34790) * Fixed incorrect namespace * .Components was weird so I removed it --- Content.Server/Stunnable/Systems/StunbatonSystem.cs | 1 - Content.Shared/Stunnable/StunbatonComponent.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Server/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs index 97dd2c7e73..1e2494203a 100644 --- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs +++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Server.Power.Events; -using Content.Server.Stunnable.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage.Events; using Content.Shared.Examine; diff --git a/Content.Shared/Stunnable/StunbatonComponent.cs b/Content.Shared/Stunnable/StunbatonComponent.cs index 1df009f780..b133679cd3 100644 --- a/Content.Shared/Stunnable/StunbatonComponent.cs +++ b/Content.Shared/Stunnable/StunbatonComponent.cs @@ -2,7 +2,7 @@ using Content.Shared.Stunnable; using Robust.Shared.Audio; using Robust.Shared.GameStates; -namespace Content.Server.Stunnable.Components; +namespace Content.Shared.Stunnable; [RegisterComponent, NetworkedComponent] [AutoGenerateComponentState]