* reeeecolllaaaaaaaa * gonna convert these to public while I'm here for consistency sake * requested changes.
36 lines
1017 B
C#
36 lines
1017 B
C#
using Content.Server.Administration;
|
|
using Content.Server.Chat.Managers;
|
|
using Content.Shared.Administration;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Content.Server.Chat.Commands
|
|
{
|
|
[AdminCommand(AdminFlags.Adminchat)]
|
|
internal sealed class AdminChatCommand : LocalizedCommands
|
|
{
|
|
[Dependency] private readonly IChatManager _chatManager = default!;
|
|
|
|
public override string Command => "asay";
|
|
|
|
public override void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
var player = shell.Player;
|
|
|
|
if (player == null)
|
|
{
|
|
shell.WriteError(Loc.GetString($"shell-cannot-run-command-from-server"));
|
|
return;
|
|
}
|
|
|
|
if (args.Length < 1)
|
|
return;
|
|
|
|
var message = string.Join(" ", args).Trim();
|
|
if (string.IsNullOrEmpty(message))
|
|
return;
|
|
|
|
_chatManager.TrySendOOCMessage(player, message, OOCChatType.Admin);
|
|
}
|
|
}
|
|
}
|