diff options
-rwxr-xr-x | Reaktor/IRC/bot2.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Reaktor/IRC/bot2.py b/Reaktor/IRC/bot2.py index 0279c0f6..f8273ffa 100755 --- a/Reaktor/IRC/bot2.py +++ b/Reaktor/IRC/bot2.py @@ -77,7 +77,8 @@ class IRCBot(SimpleIRCClient): ME(self.target, 'mimimi') else: - PRIVMSG(self.target, _from + ': you are made of stupid') + if _handle != 'ALL': + PRIVMSG(self.target, _from + ': you are made of stupid') def on_welcome(self, connection, event): print('I\'m welcome! :D joining to %s now...' % (self.target)) |