Compare commits

..

2 Commits

Author SHA1 Message Date
663fb929e2 Notify when bot is ready to be used 2023-12-06 08:38:19 +11:00
358a456386 Remove excessive import 2023-12-06 08:25:46 +11:00
2 changed files with 11 additions and 1 deletions

View File

@ -6,7 +6,7 @@ use std::process::Command;
use std::io::Write; use std::io::Write;
const WHITELISTED_USERS: &[UserId] = &[ const WHITELISTED_USERS: &[UserId] = &[
poise::serenity_prelude::UserId(190407856527376384) UserId(190407856527376384)
]; ];
/// Evaluate a piece of code /// Evaluate a piece of code

View File

@ -11,6 +11,16 @@ async fn on_ready(
) -> Result<(), Error> { ) -> Result<(), Error> {
println!("Connected to API as {}", ready.user.name); 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); let register_commands = std::env::var("REGISTER_CMDS").unwrap_or_else(|_| String::from("true")).parse::<bool>().unwrap_or(true);
if register_commands { if register_commands {