]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Predict warp point location examines. (#39402)
authorKyle Tyo <36606155+VerinSenpai@users.noreply.github.com>
Tue, 5 Aug 2025 18:26:41 +0000 (14:26 -0400)
committerGitHub <noreply@github.com>
Tue, 5 Aug 2025 18:26:41 +0000 (20:26 +0200)
commit

Content.Benchmarks/PvsBenchmark.cs
Content.Server/Administration/Commands/WarpCommand.cs
Content.Server/Ghost/GhostSystem.cs
Content.Server/Objectives/Systems/NinjaConditionsSystem.cs
Content.Server/Pinpointer/NavMapSystem.cs
Content.Shared/Warps/WarpPointComponent.cs
Content.Shared/Warps/WarpPointSystem.cs [moved from Content.Server/Warps/WarpPointSystem.cs with 87% similarity]

index 1edbcb644870ebbc6c6034397d24f1233455e852..51a013539e0b8d84d5eae326a15fe40e1e2490d6 100644 (file)
@@ -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;
index 06d771ec2ff2ab67e2d97d5ddf00503808481e57..aa1218f0bf1c54a828479346aa65d98d5db9ff6b 100644 (file)
@@ -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;
index 3e09d861899e242e857d0d9ff77f97e0141443ad..1a3c9031fe743ee9c6ea43c8ca754ec1bc0e232d 100644 (file)
@@ -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;
index 808829f6d925ac8964fdef9400801f2b47a01683..c9e9326c1ea38fbf32ca84f3aa45f087dd5f0f87 100644 (file)
@@ -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;
index 89e2837b3579a8631e26a17af745868db71f1768..9d0862ba47a1446f4cf1d053af8c7232b1f736ca 100644 (file)
@@ -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;
index 61e84a660c5a2ab502405e42c6d0d68a84b366aa..fdd33efb864be8f8b9cd61811f152d1c0834e1af 100644 (file)
@@ -9,7 +9,7 @@ namespace Content.Shared.Warps;
 [RegisterComponent, NetworkedComponent]
 public sealed partial class WarpPointComponent : Component
 {
-    [ViewVariables(VVAccess.ReadWrite), DataField]
+    [DataField]
     public string? Location;
 
     /// <summary>
similarity index 87%
rename from Content.Server/Warps/WarpPointSystem.cs
rename to Content.Shared/Warps/WarpPointSystem.cs
index 2e2264a81abd37ad304d3ccd2fd9e2e9c612db04..c8474acd3325375b952ac02ba4a6f63075b65177 100644 (file)
@@ -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
 {