mirror of
https://github.com/Dummi26/mcdcbot.git
synced 2025-03-10 05:13:53 +01:00
add return statement
This commit is contained in:
parent
8693508435
commit
94805a962c
@ -46,6 +46,7 @@ async fn start(
|
|||||||
if ctx.channel_id() != cid {
|
if ctx.channel_id() != cid {
|
||||||
ctx.say(format!("This command can only be used in <#{cid}>.",))
|
ctx.say(format!("This command can only be used in <#{cid}>.",))
|
||||||
.await?;
|
.await?;
|
||||||
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// find server by name
|
// find server by name
|
||||||
@ -123,6 +124,7 @@ async fn stop(ctx: Context<'_>) -> Result<(), Error> {
|
|||||||
if ctx.channel_id() != cid {
|
if ctx.channel_id() != cid {
|
||||||
ctx.say(format!("This command can only be used in <#{cid}>.",))
|
ctx.say(format!("This command can only be used in <#{cid}>.",))
|
||||||
.await?;
|
.await?;
|
||||||
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let current_lock = ctx.data().current.lock().await;
|
let current_lock = ctx.data().current.lock().await;
|
||||||
@ -151,6 +153,7 @@ async fn run_command(
|
|||||||
if ctx.channel_id() != cid {
|
if ctx.channel_id() != cid {
|
||||||
ctx.say(format!("This command can only be used in <#{cid}>.",))
|
ctx.say(format!("This command can only be used in <#{cid}>.",))
|
||||||
.await?;
|
.await?;
|
||||||
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let current_lock = ctx.data().current.lock().await;
|
let current_lock = ctx.data().current.lock().await;
|
||||||
|
Loading…
Reference in New Issue
Block a user