From: Jessey van Hoeijen <114107545+LMSNoise@users.noreply.github.com> Date: Fri, 31 Jan 2025 14:43:07 +0000 (+0100) Subject: Fix stunbaton component namespace (#34790) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=c8c0821a23e714d732a0bbe5aaddbc1b460c5b3c;p=space-station-14.git Fix stunbaton component namespace (#34790) * Fixed incorrect namespace * .Components was weird so I removed it --- 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]