Fix ping sanitization, change init message
This commit is contained in:
parent
95b3655a30
commit
de6660657b
|
@ -19,7 +19,7 @@ impl EventHandler for Handler {
|
|||
fn ready(&self, ctx: Context, ready: Ready) {
|
||||
if let Some(shard) = ready.shard {
|
||||
println!(
|
||||
"INFO: {} is connected on shard {}/{}!\n>>",
|
||||
"INFO: {} is connected on shard {}/{}!\nuwu",
|
||||
ready.user.name, shard[0], shard[1]
|
||||
);
|
||||
|
||||
|
@ -135,7 +135,7 @@ fn list_srv(ctx: &mut Context, message: &Message) -> CommandResult {
|
|||
}
|
||||
let _ = message.channel_id.say(
|
||||
&ctx.http,
|
||||
list.replace("@everyone", "@\u{200B}everyone"),
|
||||
list.replace("@", "@\u{200B}"),
|
||||
);
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in New Issue