diff options
| author | Alee <alee14498@gmail.com> | 2018-02-25 17:33:06 -0500 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-02-25 17:33:06 -0500 |
| commit | 848f7baf62752ca52272c1305562670d986a4249 (patch) | |
| tree | 9305db654bc4512f2b42df6b0c5d82f2a4e50623 /events/message.js | |
| parent | 05d715b1627f8f123a3796c576b657ca9caff7f3 (diff) | |
| download | PokeBot-848f7baf62752ca52272c1305562670d986a4249.tar.gz PokeBot-848f7baf62752ca52272c1305562670d986a4249.tar.bz2 PokeBot-848f7baf62752ca52272c1305562670d986a4249.zip | |
Added a new phase for mentioning pokebot
Diffstat (limited to 'events/message.js')
| -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 >:(((('); + } } } }; |
