27 lines
774 B
C#
27 lines
774 B
C#
// SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 Conchelle <mary@thughunt.ing>
|
|
// SPDX-FileCopyrightText: 2025 GoobBot <uristmchands@proton.me>
|
|
// SPDX-FileCopyrightText: 2025 Misandry <mary@thughunt.ing>
|
|
// SPDX-FileCopyrightText: 2025 gus <august.eymann@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
using Content.Shared.Verbs;
|
|
|
|
namespace Content.Server._Goobstation.Administration.Systems;
|
|
|
|
public sealed partial class GoobAdminVerbSystem : EntitySystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
SubscribeLocalEvent<GetVerbsEvent<Verb>>(GetVerbs);
|
|
}
|
|
|
|
private void GetVerbs(GetVerbsEvent<Verb> args)
|
|
{
|
|
AddAntagVerbs(args);
|
|
}
|
|
}
|