17 lines
408 B
C#
17 lines
408 B
C#
using Content.Shared.Administration;
|
|
|
|
namespace Content.Server.Administration.Systems;
|
|
|
|
public sealed class AdminFrozenSystem : SharedAdminFrozenSystem
|
|
{
|
|
/// <summary>
|
|
/// Freezes and mutes the given entity.
|
|
/// </summary>
|
|
public void FreezeAndMute(EntityUid uid)
|
|
{
|
|
var comp = EnsureComp<AdminFrozenComponent>(uid);
|
|
comp.Muted = true;
|
|
Dirty(uid, comp);
|
|
}
|
|
}
|