diff --git a/src/commands/owner.rs b/src/commands/owner.rs index 35b3d00..0a80087 100644 --- a/src/commands/owner.rs +++ b/src/commands/owner.rs @@ -10,12 +10,12 @@ use serenity::{ use std::convert::TryFrom; #[group] -#[commands(leave, send_message)] +#[commands(leave_guild, send_message)] pub(crate) struct Owner; #[command] #[owners_only] -pub async fn leave(ctx: &Context, _msg: &Message, mut args: Args) -> CommandResult { +pub async fn leave_guild(ctx: &Context, _msg: &Message, mut args: Args) -> CommandResult { let guild = GuildId::try_from(args.single::()?)?; guild.leave(&ctx.http).await?; Ok(())