diff --git a/src/main.rs b/src/main.rs index b726541..21bce57 100644 --- a/src/main.rs +++ b/src/main.rs @@ -61,6 +61,7 @@ impl EventHandler for Handler { .create_application_command(|command| commands::link_email::link::register(command)) .create_application_command(|command| commands::link_email::verify::register(command)) .create_application_command(|command| commands::add_minecraft::server::register(command)) + .create_application_command(|command| commands::add_minecraft::user::register(command)) }) .await { @@ -81,6 +82,7 @@ impl EventHandler for Handler { "link_wolves" => commands::link_email::link::run(&command, &ctx).await, "verify" => commands::link_email::verify::run(&command, &ctx).await, "add_minecraft" => commands::add_minecraft::server::run(&command, &ctx).await, + "link_minecraft" => commands::add_minecraft::user::run(&command, &ctx).await, _ => "not implemented :(".to_string(), };