aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bot.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/bot.js b/bot.js
index 56a11bb..e68ddc0 100644
--- a/bot.js
+++ b/bot.js
@@ -373,6 +373,10 @@ client.on('message', message => {
const command = args.shift().toLowerCase();
+ if (msg.toLowerCase().includes("kden")) {
+ message.channel.send("live");
+ }
+
if (command === 'ping') {
message.channel.send(getBoshyTime(message.guild) + ' PONG! I want to play pong... :\'(');
} else if (command === 'pong') {
@@ -519,10 +523,6 @@ client.on('message', message => {
message.channel.send(getBoshyTime(message.guild) + " GAH! " + msg + " Refer to aq:help for syntax and other stuff.");
}
- if (message.content == "kden") {
- message.channel.send("live");
- }
-
});