From c87562b36ad21099c39ea4ca09cbb5101c0b6fc9 Mon Sep 17 00:00:00 2001 From: red binder Date: Wed, 13 May 2026 10:00:35 +0200 Subject: [PATCH] fix the commands name --- src/miiverse_mod_application.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/miiverse_mod_application.rs b/src/miiverse_mod_application.rs index 6a52a0c..77deb51 100644 --- a/src/miiverse_mod_application.rs +++ b/src/miiverse_mod_application.rs @@ -11,7 +11,7 @@ pub struct MiiverseModApplicationHandler{ #[async_trait] impl EventHandler for MiiverseModApplicationHandler { async fn ready(&self, ctx: Context, data_about_bot: Ready) { - let command = CreateCommand::new("miivserse-mod-application") + let command = CreateCommand::new("mod-application") .description("Apply for moderator"); let cmd = Command::create_global_command(&ctx.http, command).await.expect("unable to register command");