Prevent early salvage FTL (#16409)

This commit is contained in:
metalgearsloth
2023-05-14 21:37:58 +10:00
committed by GitHub
parent 67bccd4b37
commit ed297e9d46
4 changed files with 10 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.Events;
/// <summary>
/// Raised on the client when it wishes to travel somewhere.
/// </summary>
[Serializable, NetSerializable]
public sealed class ShuttleConsoleFTLRequestMessage : BoundUserInterfaceMessage
{
public EntityUid Destination;
}