diff --git a/Content.Benchmarks/PvsBenchmark.cs b/Content.Benchmarks/PvsBenchmark.cs index 1edbcb6448..51a013539e 100644 --- a/Content.Benchmarks/PvsBenchmark.cs +++ b/Content.Benchmarks/PvsBenchmark.cs @@ -6,7 +6,6 @@ using BenchmarkDotNet.Attributes; using Content.IntegrationTests; using Content.IntegrationTests.Pair; using Content.Server.Mind; -using Content.Server.Warps; using Content.Shared.Warps; using Robust.Shared; using Robust.Shared.Analyzers; diff --git a/Content.Server/Administration/Commands/WarpCommand.cs b/Content.Server/Administration/Commands/WarpCommand.cs index 06d771ec2f..aa1218f0bf 100644 --- a/Content.Server/Administration/Commands/WarpCommand.cs +++ b/Content.Server/Administration/Commands/WarpCommand.cs @@ -1,6 +1,5 @@ using System.Linq; using System.Numerics; -using Content.Server.Warps; using Content.Shared.Administration; using Content.Shared.Follower; using Content.Shared.Ghost; diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 3e09d86189..1a3c9031fe 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -6,7 +6,6 @@ using Content.Server.GameTicking; using Content.Server.Ghost.Components; using Content.Server.Mind; using Content.Server.Roles.Jobs; -using Content.Server.Warps; using Content.Shared.Actions; using Content.Shared.CCVar; using Content.Shared.Damage; @@ -30,7 +29,6 @@ using Content.Shared.Storage.Components; using Content.Shared.Tag; using Content.Shared.Warps; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Physics.Components; diff --git a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs index 808829f6d9..c9e9326c1e 100644 --- a/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs +++ b/Content.Server/Objectives/Systems/NinjaConditionsSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Objectives.Components; using Content.Server.Roles; -using Content.Server.Warps; using Content.Shared.Objectives.Components; using Content.Shared.Ninja.Components; using Content.Shared.Roles; diff --git a/Content.Server/Pinpointer/NavMapSystem.cs b/Content.Server/Pinpointer/NavMapSystem.cs index 89e2837b35..9d0862ba47 100644 --- a/Content.Server/Pinpointer/NavMapSystem.cs +++ b/Content.Server/Pinpointer/NavMapSystem.cs @@ -2,7 +2,6 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Station.Systems; -using Content.Server.Warps; using Content.Shared.Database; using Content.Shared.Examine; using Content.Shared.Localizations; diff --git a/Content.Shared/Warps/WarpPointComponent.cs b/Content.Shared/Warps/WarpPointComponent.cs index 61e84a660c..fdd33efb86 100644 --- a/Content.Shared/Warps/WarpPointComponent.cs +++ b/Content.Shared/Warps/WarpPointComponent.cs @@ -9,7 +9,7 @@ namespace Content.Shared.Warps; [RegisterComponent, NetworkedComponent] public sealed partial class WarpPointComponent : Component { - [ViewVariables(VVAccess.ReadWrite), DataField] + [DataField] public string? Location; /// diff --git a/Content.Server/Warps/WarpPointSystem.cs b/Content.Shared/Warps/WarpPointSystem.cs similarity index 87% rename from Content.Server/Warps/WarpPointSystem.cs rename to Content.Shared/Warps/WarpPointSystem.cs index 2e2264a81a..c8474acd33 100644 --- a/Content.Server/Warps/WarpPointSystem.cs +++ b/Content.Shared/Warps/WarpPointSystem.cs @@ -1,8 +1,7 @@ -using Content.Shared.Examine; +using Content.Shared.Examine; using Content.Shared.Ghost; -using Content.Shared.Warps; -namespace Content.Server.Warps; +namespace Content.Shared.Warps; public sealed class WarpPointSystem : EntitySystem {