1.4.6- natural arguments can now be on new lines and work properly

This commit is contained in:
2021-02-21 12:26:49 +00:00
parent 1820b5a17b
commit 3075e34fe1
4 changed files with 150 additions and 110 deletions

View File

@ -978,6 +978,22 @@ impl Content {
}
}
/*
#[command("countdown")]
#[permission_level(Managed)]
async fn countdown(ctx: &Context, msg: &Message, args: String) {
if !check_subscription_on_message(&ctx, &msg).await {
} else {
let (pool, lm) = get_ctx_data(&ctx).await;
let split_args = args.splitn(3, ' ').collect::<Vec<&str>>();
if split_args.len() == 3 {
} else {
}
}
}
*/
#[command("remind")]
#[permission_level(Managed)]
async fn remind(ctx: &Context, msg: &Message, args: String) {