Notify when bot is ready to be used
This commit is contained in:
parent
358a456386
commit
663fb929e2
10
src/main.rs
10
src/main.rs
@ -11,6 +11,16 @@ async fn on_ready(
|
||||
) -> Result<(), Error> {
|
||||
println!("Connected to API as {}", ready.user.name);
|
||||
|
||||
serenity::ChannelId(865673694184996888).send_message(&ctx.http, |m| {
|
||||
m.embed(|e| {
|
||||
e.color(0xf1d63c)
|
||||
.thumbnail(ready.user.avatar_url().unwrap_or_default())
|
||||
.author(|a| {
|
||||
a.name(format!("{} is ready!", ready.user.name))
|
||||
})
|
||||
})
|
||||
}).await?;
|
||||
|
||||
let register_commands = std::env::var("REGISTER_CMDS").unwrap_or_else(|_| String::from("true")).parse::<bool>().unwrap_or(true);
|
||||
|
||||
if register_commands {
|
||||
|
Loading…
Reference in New Issue
Block a user