From 1c9ce846ca74ea4bef33d3d7f4d71fac664f8e5d Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Tue, 2 Aug 2022 22:05:08 +0200 Subject: [PATCH] add two named suboptions --- .../MareSynchronosServer/Discord/DiscordBot.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MareSynchronosServer/MareSynchronosServer/Discord/DiscordBot.cs b/MareSynchronosServer/MareSynchronosServer/Discord/DiscordBot.cs index de98861..84e9700 100644 --- a/MareSynchronosServer/MareSynchronosServer/Discord/DiscordBot.cs +++ b/MareSynchronosServer/MareSynchronosServer/Discord/DiscordBot.cs @@ -295,10 +295,11 @@ namespace MareSynchronosServer.Discord .WithName("register") .WithDescription("Registration for the Mare Synchronos server of this Discord") .AddOption(new SlashCommandOptionBuilder() + .WithName("new account") .WithDescription("Starts the registration process for the Mare Synchronos server of this Discord") .WithType(ApplicationCommandOptionType.SubCommand)) .AddOption(new SlashCommandOptionBuilder() - .WithName("forced") + .WithName("overwrite old account") .WithDescription("Will forcefully overwrite your current character on the service, if present") .WithType(ApplicationCommandOptionType.SubCommand));