Skip to content

Commit

Permalink
lol
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMarovitz committed Nov 5, 2023
1 parent 707183f commit 77c7d89
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,14 @@ impl EventHandler for Handler {
if msg.content == "~ping" {
let _ = msg.channel_id.say(&context, "Pong!").await;
}

if msg.content.contains("fortnite") {
let _ = msg.reply_ping(&context, "no.").await;
}

if msg.content.contains("Fortnite") {
let _ = msg.reply_ping(&context, "no.").await;
}
}

async fn ready(&self, _: Context, ready: Ready) {
Expand Down

0 comments on commit 77c7d89

Please sign in to comment.