diff options
| -rw-r--r-- | bot.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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"); - } - }); |
