aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2018-02-14 12:00:38 -0500
committerNathan Perry <avaglir@gmail.com>2018-02-14 12:00:38 -0500
commit2548ff415a9e671040d2b8a485b010409fc71d58 (patch)
tree7a00d9b338fbd6f5bdcea801ec62629a0b701d3d /src
parent49af4053df8e40d584c43f856e4d6bb3b8432698 (diff)
tone down anger
Diffstat (limited to 'src')
-rw-r--r--src/commands.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands.rs b/src/commands.rs
index 952a41a..cb39a74 100644
--- a/src/commands.rs
+++ b/src/commands.rs
@@ -102,7 +102,7 @@ impl PlayQueue {
Ok(src) => src,
Err(e) => {
error!("bad link: {}; {}", &item.url, e);
- let _ = send(channel, &format!("what the fuck, {}? what was that link?", &item.initiator), false);
+ let _ = send(channel, &format!("what the fuck"), false);
sleep();
continue;
}
@@ -304,7 +304,7 @@ command!(list(ctx, msg) {
},
None => {
debug!("`list` called with no items in queue");
- send(msg.channel_id, "Nothing is playing you goddamn meme", msg.tts)?;
+ send(msg.channel_id, "Nothing is playing you meme", msg.tts)?;
return Ok(());
},
}