25 lines
707 B
C#
25 lines
707 B
C#
using Content.Server.Shuttles.EntitySystems;
|
|
using Content.Shared.Alert;
|
|
using Content.Shared.Shuttles.Components;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Content.Server.Alert.Click
|
|
{
|
|
/// <summary>
|
|
/// Stop piloting shuttle
|
|
/// </summary>
|
|
[UsedImplicitly]
|
|
[DataDefinition]
|
|
public sealed class StopPiloting : IAlertClick
|
|
{
|
|
public void AlertClicked(EntityUid player)
|
|
{
|
|
if (IoCManager.Resolve<IEntityManager>().TryGetComponent(player, out PilotComponent? pilotComponent) &&
|
|
pilotComponent.Console != null)
|
|
{
|
|
EntitySystem.Get<ShuttleConsoleSystem>().RemovePilot(pilotComponent);
|
|
}
|
|
}
|
|
}
|
|
}
|