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