diff options
-rwxr-xr-x | IRC/asybot.py | 3 | ||||
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | config.py | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/IRC/asybot.py b/IRC/asybot.py index 6d19fd0..89967c3 100755 --- a/IRC/asybot.py +++ b/IRC/asybot.py @@ -54,7 +54,7 @@ class asybot(asychat): # passed without a message. Any incoming message will reset alarm. self.alarm_timeout = getconf('irc_alarm_timeout') self.hammer_interval = getconf('irc_hammer_interval') - self.kill_timeout = 360 + self.kill_timeout = getconf('irc_kill_timeout') signal(SIGALRM, lambda signum, frame: self.alarm_handler()) self.reset_alarm() @@ -129,6 +129,7 @@ class asybot(asychat): y = match(command['pattern'], rest) if y: self.execute_command(command, y, PRIVMSG, ME) + break def execute_command(self, command, match, PRIVMSG, ME): from os.path import realpath, dirname, join @@ -1,6 +1,3 @@ -{ "pattern": "^(?:asybot|\\*):.*", "argv": [ "commands/say", "{{from.nickname}}: you are made of stupid" ], only_match: true } - -getconf: check syntax and semantics on load getconf: reload inotify apropros caps: commands need access to config @@ -31,6 +31,6 @@ irc_commands = [ { 'pattern': '^(?:' + name + '|\\*):.*', 'argv': [ 'commands/say', '{TODO:fromname}: you are made of stupid!' ] }, # "highlight" - { 'pattern': '\\b' + name + '\\b', + { 'pattern': '.*\\b' + name + '\\b.*', 'argv': [ 'commands/say', 'I\'m famous' ] } ] |