Add '/sky suggest' command suggestion option

Added `/sky suggest` for the suggestions command
This commit is contained in:
SkyJoshua
2026-02-26 05:40:58 +00:00
committed by GitHub
parent e9f5417bee
commit f4fb800b49

View File

@@ -94,7 +94,7 @@ client.MessageService.MessageReceived += async (message) =>
}
}
if (lowerContent.Contains("/sky suggestcommands") || lowerContent.Contains("/sky suggestcommand"))
if (lowerContent.Contains("/sky suggestcommands") || lowerContent.Contains("/sky suggestcommand") || lowerContent.Contains("/sky suggest"))
{
if (channelCache.TryGetValue(message.ChannelId, out var channel))
{
@@ -128,4 +128,4 @@ static bool IsSingleEmoji(string input)
count++;
return count == 1;
}
}