Selectively revert PullController (#28126)

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.
This commit is contained in:
metalgearsloth
2024-05-27 10:11:17 +10:00
committed by GitHub
parent cba23487d3
commit af70b9a3c7
5 changed files with 346 additions and 45 deletions

View File

@@ -0,0 +1,14 @@
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;
}