Missed these in the merge, whoops.
This commit is contained in:
@@ -1,11 +1,14 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
|
using Content.Server.Administration;
|
||||||
using Content.Server.GameObjects.Components.Nutrition;
|
using Content.Server.GameObjects.Components.Nutrition;
|
||||||
|
using Content.Shared.Administration;
|
||||||
using Content.Shared.GameObjects.Components.Nutrition;
|
using Content.Shared.GameObjects.Components.Nutrition;
|
||||||
using Robust.Server.Interfaces.Console;
|
using Robust.Server.Interfaces.Console;
|
||||||
using Robust.Server.Interfaces.Player;
|
using Robust.Server.Interfaces.Player;
|
||||||
|
|
||||||
namespace Content.Server.Commands
|
namespace Content.Server.Commands
|
||||||
{
|
{
|
||||||
|
[AdminCommand(AdminFlags.Debug)]
|
||||||
public class Hungry : IClientCommand
|
public class Hungry : IClientCommand
|
||||||
{
|
{
|
||||||
public string Command => "hungry";
|
public string Command => "hungry";
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using Content.Server.Administration;
|
||||||
using Content.Server.Commands;
|
using Content.Server.Commands;
|
||||||
using Content.Server.GameObjects.EntitySystems;
|
using Content.Server.GameObjects.EntitySystems;
|
||||||
|
using Content.Shared.Administration;
|
||||||
using Content.Shared.Alert;
|
using Content.Shared.Alert;
|
||||||
using Content.Shared.GameObjects.Components.Mobs;
|
using Content.Shared.GameObjects.Components.Mobs;
|
||||||
using Robust.Server.Interfaces.Console;
|
using Robust.Server.Interfaces.Console;
|
||||||
@@ -88,6 +90,7 @@ namespace Content.Server.GameObjects.Components.Mobs
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[AdminCommand(AdminFlags.Debug)]
|
||||||
public sealed class ShowAlert : IClientCommand
|
public sealed class ShowAlert : IClientCommand
|
||||||
{
|
{
|
||||||
public string Command => "showalert";
|
public string Command => "showalert";
|
||||||
@@ -129,6 +132,7 @@ namespace Content.Server.GameObjects.Components.Mobs
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[AdminCommand(AdminFlags.Debug)]
|
||||||
public sealed class ClearAlert : IClientCommand
|
public sealed class ClearAlert : IClientCommand
|
||||||
{
|
{
|
||||||
public string Command => "clearalert";
|
public string Command => "clearalert";
|
||||||
|
|||||||
Reference in New Issue
Block a user