Files
2025-10-19 14:42:18 +00:00

15 lines
395 B
C#

using Content.Shared.Rejuvenate;
namespace Content.Shared.Administration.Systems;
public sealed class RejuvenateSystem : EntitySystem
{
/// <summary>
/// Fully heals the target, removing all damage, debuffs or other negative status effects.
/// </summary>
public void PerformRejuvenate(EntityUid target)
{
RaiseLocalEvent(target, new RejuvenateEvent());
}
}