diff --git a/PluralKit.Bot/Commands/HelpCommands.cs b/PluralKit.Bot/Commands/HelpCommands.cs index 28ba18d9..183d2e6f 100644 --- a/PluralKit.Bot/Commands/HelpCommands.cs +++ b/PluralKit.Bot/Commands/HelpCommands.cs @@ -7,6 +7,7 @@ namespace PluralKit.Bot.Commands public class HelpCommands: ModuleBase { [Command("help")] + [Remarks("help")] public async Task HelpRoot([Remainder] string _ignored) { await Context.Channel.SendMessageAsync(embed: new EmbedBuilder() @@ -24,6 +25,7 @@ namespace PluralKit.Bot.Commands } [Command("commands")] + [Remarks("commands")] public async Task CommandList() { await Context.Channel.SendMessageAsync( diff --git a/PluralKit.Bot/Commands/SystemCommands.cs b/PluralKit.Bot/Commands/SystemCommands.cs index 775f771d..b3326551 100644 --- a/PluralKit.Bot/Commands/SystemCommands.cs +++ b/PluralKit.Bot/Commands/SystemCommands.cs @@ -28,6 +28,7 @@ namespace PluralKit.Bot.Commands [Command] + [Remarks("system ")] public async Task Query(PKSystem system = null) { if (system == null) system = Context.SenderSystem; if (system == null) throw Errors.NoSystemError; @@ -151,6 +152,7 @@ namespace PluralKit.Bot.Commands } [Command("fronter")] + [Remarks("system [system] fronter")] public async Task SystemFronter() { var system = ContextEntity ?? Context.SenderSystem; @@ -163,6 +165,7 @@ namespace PluralKit.Bot.Commands } [Command("fronthistory")] + [Remarks("system [system] fronthistory")] public async Task SystemFrontHistory() { var system = ContextEntity ?? Context.SenderSystem; @@ -175,6 +178,7 @@ namespace PluralKit.Bot.Commands } [Command("frontpercent")] + [Remarks("system [system] frontpercent [duration]")] public async Task SystemFrontPercent(string durationStr = "30d") { var system = ContextEntity ?? Context.SenderSystem;