Dont refer to DeleteUserCommand as banning

This commit is contained in:
jvyden 2022-01-09 23:05:32 -05:00
commit 1f2d9f3303
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -11,11 +11,11 @@ namespace LBPUnion.ProjectLighthouse.Maintenance.Commands
public class DeleteUserCommand : ICommand public class DeleteUserCommand : ICommand
{ {
private readonly Database database = new(); private readonly Database database = new();
public string Name() => "Delete/Ban User"; public string Name() => "Delete User";
public string[] Aliases() public string[] Aliases()
=> new[] => new[]
{ {
"deleteUser", "wipeUser", "banUser", "deleteUser", "wipeUser",
}; };
public string Arguments() => "<username/userId>"; public string Arguments() => "<username/userId>";
public int RequiredArgs() => 1; public int RequiredArgs() => 1;