using Content.Server.Shuttle; using Content.Shared.Alert; using JetBrains.Annotations; using Robust.Shared.Serialization.Manager.Attributes; namespace Content.Server.Alert.Click { /// /// Stop piloting shuttle /// [UsedImplicitly] [DataDefinition] public class StopPiloting : IAlertClick { public void AlertClicked(ClickAlertEventArgs args) { if (args.Player.TryGetComponent(out ShuttleControllerComponent? controller)) { controller.RemoveController(); } } } }