diff options
| -rw-r--r-- | events/message.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/events/message.js b/events/message.js index 4f01ab1..43ebcbf 100644 --- a/events/message.js +++ b/events/message.js @@ -7,7 +7,9 @@ module.exports = (bot, msg) => { msg.reply('Hi there.'); } else if (msg.content.toLowerCase().includes('shut') && msg.content.toLowerCase().includes('up')) { msg.reply('Excuse me?'); - } + } else if (msg.content.toLowerCase().includes('astralmod')) { + msg.reply('HEY! I hate AstralMod so don\'t talk about it >:(((('); + } } } }; |
