feat: made the minecraft command fall under Wolves
All checks were successful
On_Push / lint_fmt (push) Successful in 28s
On_Push / lint_clippy (push) Successful in 26s
On_Push / build (push) Successful in 1m29s
On_Push / deploy (push) Successful in 17s

This commit is contained in:
silver 2025-03-06 21:42:27 +00:00
parent df032f2d7b
commit f307fcea43
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
4 changed files with 26 additions and 22 deletions

View file

@ -511,4 +511,9 @@ pub fn register() -> CreateCommand {
)
// unlink
.add_option(CreateCommandOption::new(CommandOptionType::SubCommand, "unlink", "Unlink your Wolves account from your Discord"))
.add_option(
CreateCommandOption::new(CommandOptionType::SubCommand, "link_minecraft", "Link your minecraft account")
.add_sub_option(CreateCommandOption::new(CommandOptionType::String, "minecraft_username", "Your Minecraft username").required(true))
.add_sub_option(CreateCommandOption::new(CommandOptionType::Boolean, "bedrock_account", "Is this a Bedrock account?").required(false)),
)
}