26 lines
724 B
C#
26 lines
724 B
C#
using Content.Server.Cuffs.Components;
|
|
using Content.Shared.Alert;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
namespace Content.Server.Alert.Click
|
|
{
|
|
/// <summary>
|
|
/// Try to remove handcuffs from yourself
|
|
/// </summary>
|
|
[UsedImplicitly]
|
|
[DataDefinition]
|
|
public class RemoveCuffs : IAlertClick
|
|
{
|
|
public void AlertClicked(ClickAlertEventArgs args)
|
|
{
|
|
if (IoCManager.Resolve<IEntityManager>().TryGetComponent(args.Player, out CuffableComponent? cuffableComponent))
|
|
{
|
|
cuffableComponent.TryUncuff(args.Player);
|
|
}
|
|
}
|
|
}
|
|
}
|