From 6cfa4cb2e5f9b81dcb3d26ea1afb1756fd591ae8 Mon Sep 17 00:00:00 2001 From: Ske Date: Thu, 13 Jun 2019 17:07:49 +0200 Subject: [PATCH] Add usage strings to switch commands --- PluralKit.Bot/Commands/SwitchCommands.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PluralKit.Bot/Commands/SwitchCommands.cs b/PluralKit.Bot/Commands/SwitchCommands.cs index aaa55d8a..fcdb2126 100644 --- a/PluralKit.Bot/Commands/SwitchCommands.cs +++ b/PluralKit.Bot/Commands/SwitchCommands.cs @@ -21,6 +21,7 @@ namespace PluralKit.Bot.Commands public async Task Switch(params PKMember[] members) => await DoSwitchCommand(members); [Command("out")] + [Remarks("switch out")] [MustHaveSystem] public async Task SwitchOut() => await DoSwitchCommand(new PKMember[] { }); @@ -49,6 +50,7 @@ namespace PluralKit.Bot.Commands } [Command("move")] + [Remarks("switch move ")] [MustHaveSystem] public async Task SwitchMove([Remainder] string str) { @@ -92,6 +94,7 @@ namespace PluralKit.Bot.Commands } [Command("delete")] + [Remarks("switch delete")] [MustHaveSystem] public async Task SwitchDelete() {