Fix AGhostCommand naming (#29945)

This commit is contained in:
lzk
2024-07-14 12:25:18 +02:00
committed by GitHub
parent 960cc806cc
commit 011250f35e
2 changed files with 2 additions and 3 deletions

View File

@@ -12,13 +12,12 @@ using Robust.Shared.Console;
namespace Content.Server.Administration.Commands; namespace Content.Server.Administration.Commands;
[AdminCommand(AdminFlags.Admin)] [AdminCommand(AdminFlags.Admin)]
public sealed class AGhost : LocalizedCommands public sealed class AGhostCommand : LocalizedCommands
{ {
[Dependency] private readonly IEntityManager _entities = default!; [Dependency] private readonly IEntityManager _entities = default!;
[Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!;
public override string Command => "aghost"; public override string Command => "aghost";
public override string Description => LocalizationManager.GetString("aghost-description");
public override string Help => "aghost"; public override string Help => "aghost";
public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) public override CompletionResult GetCompletion(IConsoleShell shell, string[] args)

View File

@@ -1,3 +1,3 @@
aghost-description = Makes you an admin ghost. cmd-aghost-desc = Makes you or others an admin ghost.
aghost-no-mind-self = You can't ghost here! aghost-no-mind-self = You can't ghost here!
aghost-no-mind-other = They can't ghost here! aghost-no-mind-other = They can't ghost here!