From 5302fd6eca08e769cbda708942ba48c00d67071a Mon Sep 17 00:00:00 2001 From: urlbot Date: Wed, 24 Sep 2014 23:23:00 +0200 Subject: [PATCH] "skynet" reaction added --- eventlooper.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eventlooper.py b/eventlooper.py index 69c6e93..2872f00 100755 --- a/eventlooper.py +++ b/eventlooper.py @@ -202,6 +202,10 @@ def parse_other(data): if ratelimit_exceeded(): return False chat_write('''Multiple exclamation/question marks are a sure sign of mental disease, with %s as a living example.''' % reply_user) + elif 'skynet' in data.lower(): + if ratelimit_exceeded(): + return False + chat_write('''I'm an independent bot and have nothing to do with other artificial intelligence systems!''') return True