forked from sorceress/rustcord
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) {
|
fn ready(&self, ctx: Context, ready: Ready) {
|
||||||
if let Some(shard) = ready.shard {
|
if let Some(shard) = ready.shard {
|
||||||
println!(
|
println!(
|
||||||
"INFO: {} is connected on shard {}/{}!\n>>",
|
"INFO: {} is connected on shard {}/{}!\nuwu",
|
||||||
ready.user.name, shard[0], shard[1]
|
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(
|
let _ = message.channel_id.say(
|
||||||
&ctx.http,
|
&ctx.http,
|
||||||
list.replace("@everyone", "@\u{200B}everyone"),
|
list.replace("@", "@\u{200B}"),
|
||||||
);
|
);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in New Issue