From e9aed40f41fcaf411255282961979297d4a27437 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Tue, 17 Sep 2024 21:47:22 +0100 Subject: [PATCH] fix: these opotions are actually required --- src/commands/add_server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/add_server.rs b/src/commands/add_server.rs index 150d74c..a904875 100644 --- a/src/commands/add_server.rs +++ b/src/commands/add_server.rs @@ -161,14 +161,14 @@ pub fn register(command: &mut CreateApplicationCommand) -> &mut CreateApplicatio .name("server_name") .description("Name of the Discord Server.") .kind(CommandOptionType::String) - .required(false) + .required(true) }) .create_option(|option| { option .name("wolves_link") .description("Link to the Club/Society on UL Wolves.") .kind(CommandOptionType::String) - .required(false) + .required(true) }) }