better api for debug_channel_say
This commit is contained in:
parent
c62add05e6
commit
144564f4f7
2 changed files with 5 additions and 4 deletions
|
@ -43,7 +43,7 @@ async fn crosspost(ctx: &Context, msg: &Message, mut args: Args) -> CommandResul
|
||||||
args.rest()
|
args.rest()
|
||||||
);
|
);
|
||||||
for channel in channels {
|
for channel in channels {
|
||||||
debug_channel_say(&channel.into(), *msg.author.id.as_u64(), ctx, &rest).await?;
|
debug_channel_say(channel, msg.author.id, ctx, &rest).await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -31,12 +31,13 @@ pub async fn debug_say(
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn debug_channel_say(
|
pub async fn debug_channel_say(
|
||||||
channel: &ChannelId,
|
channel: impl Into<ChannelId>,
|
||||||
author_id: u64,
|
author_id: impl Into<u64>,
|
||||||
ctx: impl AsRef<Http>,
|
ctx: impl AsRef<Http>,
|
||||||
resp: impl std::fmt::Display,
|
resp: impl std::fmt::Display,
|
||||||
) -> Result<Option<Message>, serenity::Error> {
|
) -> Result<Option<Message>, serenity::Error> {
|
||||||
if cfg!(debug_assertions) && author_id == *BOT_OWNER_ID {
|
let channel: ChannelId = channel.into();
|
||||||
|
if cfg!(debug_assertions) && author_id.into() == *BOT_OWNER_ID {
|
||||||
Ok(Some(channel.say(ctx, format!("DEBUG: {}", resp)).await?))
|
Ok(Some(channel.say(ctx, format!("DEBUG: {}", resp)).await?))
|
||||||
} else if !cfg!(debug_assertions) {
|
} else if !cfg!(debug_assertions) {
|
||||||
Ok(Some(channel.say(ctx, resp).await?))
|
Ok(Some(channel.say(ctx, resp).await?))
|
||||||
|
|
Loading…
Reference in a new issue