forked from TeamInklings/Octobot
Rearrange commands in !help (#37)
This commit is contained in:
parent
e80ced2d54
commit
c83a458633
1 changed files with 2 additions and 2 deletions
|
@ -14,8 +14,8 @@ public sealed class CommandProcessor {
|
||||||
public static readonly ICommand[] Commands = {
|
public static readonly ICommand[] Commands = {
|
||||||
new BanCommand(), new ClearCommand(), new HelpCommand(),
|
new BanCommand(), new ClearCommand(), new HelpCommand(),
|
||||||
new KickCommand(), new MuteCommand(), new PingCommand(),
|
new KickCommand(), new MuteCommand(), new PingCommand(),
|
||||||
new SettingsCommand(), new UnbanCommand(), new UnmuteCommand(),
|
new RemindCommand(), new SettingsCommand(), new UnbanCommand(),
|
||||||
new RemindCommand()
|
new UnmuteCommand()
|
||||||
};
|
};
|
||||||
|
|
||||||
private readonly StringBuilder _stackedPrivateFeedback = new();
|
private readonly StringBuilder _stackedPrivateFeedback = new();
|
||||||
|
|
Reference in a new issue