diff options
| -rw-r--r-- | bot.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -373,10 +373,6 @@ client.on('message', message => { const command = args.shift().toLowerCase(); - if (message.content.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') { @@ -523,6 +519,10 @@ 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"); + } + }); |
