From 68ffa55dc5b48933e38771983e0f87a11a2b6369 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sat, 30 Nov 2024 01:21:40 +0000 Subject: [PATCH] fix: improve wording --- src/commands/minecraft.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/minecraft.rs b/src/commands/minecraft.rs index e8f132d..7e96b99 100644 --- a/src/commands/minecraft.rs +++ b/src/commands/minecraft.rs @@ -26,15 +26,15 @@ pub(crate) mod user { .description("Link your minecraft account") .create_option(|option| { option - .name("minecraft-username") + .name("Minecraft Username") .description("Your Minecraft username") .kind(CommandOptionType::String) .required(true) }) .create_option(|option| { option - .name("java-account") - .description("Is this a Java account?") + .name("Bedrock Account") + .description("Is this a Bedrock account?") .kind(CommandOptionType::Boolean) .required(false) }) @@ -76,7 +76,7 @@ pub(crate) mod user { let mut java = true; if let Some(x) = command.data.options.get(1) { if let Some(CommandDataOptionValue::Boolean(z)) = x.to_owned().resolved { - java = z; + java = !z; } }