Files
OldThink/Content.Server/Movement/Components/PullMovingComponent.cs
Aviu00 a60d4eec45 Selectively revert PullController (#28126) (#330)
I am leaving the issues open and have updated #26547 with more info on what we should do long-term. This is just to bandaid the short-term complaining.

Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
2024-06-05 17:31:32 +03:00

15 lines
385 B
C#

using Robust.Shared.Map;
namespace Content.Server.Movement.Components;
/// <summary>
/// Added when an entity is being ctrl-click moved when pulled.
/// </summary>
[RegisterComponent]
public sealed partial class PullMovingComponent : Component
{
// Not serialized to indicate THIS CODE SUCKS, fix pullcontroller first
[ViewVariables]
public EntityCoordinates MovingTo;
}