21 lines
528 B
C#
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();
|
|
}
|
|
}
|
|
}
|