aboutsummaryrefslogtreecommitdiff
path: root/events/message.js
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-02-25 17:37:56 -0500
committerAlee <alee14498@gmail.com>2018-02-25 17:37:56 -0500
commit6d17517b4543afbf5100b55619efc8a6d8f3c754 (patch)
treed984efd9c11f4383a6667176336bef3f679d8c73 /events/message.js
parent848f7baf62752ca52272c1305562670d986a4249 (diff)
downloadPokeBot-6d17517b4543afbf5100b55619efc8a6d8f3c754.tar.gz
PokeBot-6d17517b4543afbf5100b55619efc8a6d8f3c754.tar.bz2
PokeBot-6d17517b4543afbf5100b55619efc8a6d8f3c754.zip
New phrase for Pokebot!
Diffstat (limited to 'events/message.js')
-rw-r--r--events/message.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/events/message.js b/events/message.js
index 43ebcbf..afd9d20 100644
--- a/events/message.js
+++ b/events/message.js
@@ -9,7 +9,9 @@ module.exports = (bot, msg) => {
msg.reply('Excuse me?');
} else if (msg.content.toLowerCase().includes('astralmod')) {
msg.reply('HEY! I hate AstralMod so don\'t talk about it >:((((');
- }
+ } else if (msg.content.toLowerCase().includes('ok') && (msg.content.toLowerCase().includes('google'))) {
+ msg.reply('Sorry, but I\'m not Google...');
+ }
}
}
};