14
Content.Shared/Administration/Systems/RejuvenateSystem.cs
Normal file
14
Content.Shared/Administration/Systems/RejuvenateSystem.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user