From 9155c72070ce6f854f66d40c6f41d18b62243f1d Mon Sep 17 00:00:00 2001 From: skyjoshua Date: Thu, 26 Feb 2026 23:39:00 +0000 Subject: [PATCH] Removed Alises on some commands to make it neater. --- Program.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Program.cs b/Program.cs index f4485f2..270ab87 100644 --- a/Program.cs +++ b/Program.cs @@ -121,25 +121,25 @@ client.MessageService.MessageReceived += async (message) => 7. Automod/planet moderation"); }; - if (Utils.ContainsAny(content, "/sky suggestcommand", "/sky suggest", "s/suggestcommand", "s/suggest")) + if (Utils.ContainsAny(content, "/sky suggest", "s/suggest")) { await Utils.SendReplyAsync(channelCache, channelId, $"{pingMember} You can suggest a command to be added here: https://docs.google.com/spreadsheets/d/1CzcpLAuMiPL_RODrZ5x25cPj8yE-rR3mEnqrd_2Fbmk"); }; - if (Utils.ContainsAny(content, "/sky source", "/sky github", "s/source", "s/github")) + if (Utils.ContainsAny(content, "/sky source", "s/source")) { await Utils.SendReplyAsync(channelCache, channelId, $"{pingMember} You can see my source code here: https://github.com/SkyJoshua/SkyBot"); }; - if (Utils.ContainsAny(content, "/sky commands", "/sky cmds", "s/commands", "s/cmds")) + if (Utils.ContainsAny(content, "/sky cmds", "s/cmds")) { await Utils.SendReplyAsync(channelCache, channelId, @$"{pingMember} Here is a list of my commands: prefixes can be `/sky` or `s/` `/sky echo ` `/sky valourroadmap` - `/sky suggest|suggestcommand` - `/sky source|github` - `/sky commands|cmds` + `/sky suggest` + `/sky source + `/sky cmds` `/sky usercount`"); };