From c83a458633f17528303b595c0234aac324cbca64 Mon Sep 17 00:00:00 2001
From: mctaylors <95250141+mctaylors@users.noreply.github.com>
Date: Tue, 16 May 2023 08:58:35 +0300
Subject: [PATCH] Rearrange commands in !help (#37)

---
 CommandProcessor.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/CommandProcessor.cs b/CommandProcessor.cs
index 3ee91b6..bd8b53e 100644
--- a/CommandProcessor.cs
+++ b/CommandProcessor.cs
@@ -14,8 +14,8 @@ public sealed class CommandProcessor {
     public static readonly ICommand[] Commands = {
         new BanCommand(), new ClearCommand(), new HelpCommand(),
         new KickCommand(), new MuteCommand(), new PingCommand(),
-        new SettingsCommand(), new UnbanCommand(), new UnmuteCommand(),
-        new RemindCommand()
+        new RemindCommand(), new SettingsCommand(), new UnbanCommand(), 
+        new UnmuteCommand()
     };
 
     private readonly StringBuilder _stackedPrivateFeedback = new();