Skip to content

Commit

Permalink
Pleb
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMarovitz committed Nov 6, 2023
1 parent e1d7a35 commit 0cad932
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl EventHandler for Handler {
}

if msg.content == "~ping" {
let _ = msg.channel_id.say(&context, "Pong!").await;
let _ = msg.channel_id.say(&context, "Pong~").await;
}

if msg.content.contains("fortnite") {
Expand All @@ -111,6 +111,7 @@ impl EventHandler for Handler {
let _ = msg.channel_id.say(&context, message).await;
let _ = msg.delete(&context).await;
} else {
let _ = msg.reply_ping(&context, "Sorry, u got no perms~").await;
println!("User {} tried to say something", msg.author.id);
}
}
Expand Down

0 comments on commit 0cad932

Please sign in to comment.