aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/playback.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/commands/playback.rs b/src/commands/playback.rs
index 661dd87..bc57a4f 100644
--- a/src/commands/playback.rs
+++ b/src/commands/playback.rs
@@ -40,7 +40,12 @@ pub fn _play(ctx: &Context, msg: &Message, url: &str) -> Result<()> {
});
if host.map(|h| h.to_lowercase().contains("imgur")).unwrap_or(false) {
- send(msg.channel_id, "IMGUR IS BAD, YOU TRASH CAN MAN", msg.tts)?;
+ if msg.author.id.0 == 106160362109272064 {
+ send(msg.channel_id, "fuck you conway", true)?;
+ } else {
+ send(msg.channel_id, "IMGUR IS BAD, YOU TRASH CAN MAN", msg.tts)?;
+ }
+
return Ok(());
}