spelling mistake

This commit is contained in:
2026-02-28 00:11:52 +00:00
parent 2cf22ac322
commit b0380a4d44

View File

@@ -152,12 +152,12 @@ client.MessageService.MessageReceived += async (message) =>
if (Utils.ContainsAny(content, "s/cmds")) if (Utils.ContainsAny(content, "s/cmds"))
{ {
await Utils.SendReplyAsync(channelCache, channelId, @$"{pingMember} Here is a list of my commands: await Utils.SendReplyAsync(channelCache, channelId, @$"{pingMember} Here is a list of my commands:
`s/echo <text>` - `s/echo <text> - Echos text into the chat`
`s/valourroadmap` - `s/suggest - Shares the suggestions link`
`s/suggest` - `s/source - Sends link for the source code`
`s/source - `s/cmds - Shows this list`
`s/cmds` - `s/usercount - Shows the user count of Valour`
`s/usercount`"); - `s/devcentral - Sends the invite link to the Bot Central Planet`");
}; };
if (Utils.ContainsAny(content, "s/usercount")) if (Utils.ContainsAny(content, "s/usercount"))
@@ -169,7 +169,7 @@ client.MessageService.MessageReceived += async (message) =>
if (Utils.ContainsAny(content, "s/devcentral")) if (Utils.ContainsAny(content, "s/devcentral"))
{ {
await Utils.SendReplyAsync(channelCache, channelId, @$"{pingMember} you can join the Dev Central planet here: "); await Utils.SendReplyAsync(channelCache, channelId, @$"{pingMember} you can join the Dev Central planet here: https://app.valour.gg/I/k2tz9c4i");
} }
}; };