From de9c5084e009320d57509414ad46afe22d06a382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20C=C3=A9sar=20Ueti?= <52474532+Mirino97@users.noreply.github.com> Date: Sun, 12 Jun 2022 00:25:11 -0300 Subject: [PATCH] Renames jobban to roleban so all role commands follow the pattern roleX. (#8754) Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- .../Commands/{JobBanCommand.cs => RoleBanCommand.cs} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename Content.Server/Administration/Commands/{JobBanCommand.cs => RoleBanCommand.cs} (89%) diff --git a/Content.Server/Administration/Commands/JobBanCommand.cs b/Content.Server/Administration/Commands/RoleBanCommand.cs similarity index 89% rename from Content.Server/Administration/Commands/JobBanCommand.cs rename to Content.Server/Administration/Commands/RoleBanCommand.cs index a37ef54e4a..1f153bc5d3 100644 --- a/Content.Server/Administration/Commands/JobBanCommand.cs +++ b/Content.Server/Administration/Commands/RoleBanCommand.cs @@ -5,10 +5,10 @@ using Robust.Shared.Console; namespace Content.Server.Administration.Commands; [AdminCommand(AdminFlags.Ban)] -public sealed class JobBanCommand : IConsoleCommand +public sealed class RoleBanCommand : IConsoleCommand { - public string Command => "jobban"; - public string Description => "Bans a player from a job"; + public string Command => "roleban"; + public string Description => "Bans a player from a role"; public string Help => $"Usage: {Command} [duration in minutes, leave out or 0 for permanent ban]"; public async void Execute(IConsoleShell shell, string argStr, string[] args)