Files
tbd-station-14/Content.Server/Alert/Click/StopBeingPulled.cs
2021-06-09 22:19:39 +02:00

21 lines
528 B
C#

using Content.Shared.Alert;
using Content.Shared.Pulling.Components;
using JetBrains.Annotations;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Alert.Click
{
/// <summary>
/// Stop pulling something
/// </summary>
[UsedImplicitly]
[DataDefinition]
public class StopBeingPulled : IAlertClick
{
public void AlertClicked(ClickAlertEventArgs args)
{
args.Player.GetComponentOrNull<SharedPullableComponent>()?.TryStopPull();
}
}
}