Predict warp point location examines. (#39402)

commit
This commit is contained in:
Kyle Tyo
2025-08-05 14:26:41 -04:00
committed by GitHub
parent 47bddb70b1
commit d4c025567a
7 changed files with 3 additions and 10 deletions

View 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;

View 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;

View 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;

View 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;

View 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;

View 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>

View 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
{