diff --git a/Commands/CreateSelectionBoxPanelCommand.cs b/Commands/CreateSelectionBoxPanelCommand.cs index c72a4b4..9ab2c0d 100644 --- a/Commands/CreateSelectionBoxPanelCommand.cs +++ b/Commands/CreateSelectionBoxPanelCommand.cs @@ -16,7 +16,7 @@ public class CreateSelectionBoxPanelCommand [Command("createselectionboxpanel")] [Description("Creates a selection box which users can use to open new tickets in specific categories.")] public async Task OnExecute(SlashCommandContext command, - [Parameter("message")][Description("(Optional) The message to show in the selection box.")] string message = null) + [Parameter("placeholder")][Description("(Optional) The message to show in the selection box.")] string message = null) { DiscordMessageBuilder builder = new DiscordMessageBuilder() .WithContent(" ") diff --git a/Commands/ListCommand.cs b/Commands/ListCommand.cs index f18e1b2..3da5e76 100644 --- a/Commands/ListCommand.cs +++ b/Commands/ListCommand.cs @@ -16,7 +16,7 @@ public class ListCommand [Command("list")] [Description("Lists tickets opened by a user.")] public async Task OnExecute(SlashCommandContext command, - [Parameter("user")][Description("(Optional) The user to get tickets by, yourself by default.")] DiscordUser user = null) + [Parameter("user")][Description("(Optional) The user whose tickets to get, yourself by default.")] DiscordUser user = null) { DiscordUser listUser = user == null ? command.User : user; diff --git a/Commands/StatusCommand.cs b/Commands/StatusCommand.cs index 2b3edd6..96f90be 100644 --- a/Commands/StatusCommand.cs +++ b/Commands/StatusCommand.cs @@ -25,7 +25,7 @@ public class StatusCommand .AddField("Open tickets:", openTickets + "", true) .AddField("Closed tickets:", closedTickets + " ", true) .AddField("Report bugs:", "[Toastielab Issues](https://toastielab.dev/Emotions-stuff/SupportChild/issues)", true) - .AddField("Commands:", "[Toastielab Repository](https://toastielab.dev/Emotions-stuff/SupportChild)", true); + .AddField("Commands:", "[Toastielab Repository](https://toastielab.dev/Emotions-stuff/SupportChild/src/branch/main/docs/Commands.md)", true); await command.RespondAsync(botInfo); } } \ No newline at end of file