From 36e94de95f8d72b806450a726c6187a81005b3dc Mon Sep 17 00:00:00 2001 From: neersighted Date: Wed, 29 Feb 2012 00:44:06 -0800 Subject: [PATCH] fixed triggers for bot (via ame) --- core/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/main.py b/core/main.py index cff5550..041d67e 100755 --- a/core/main.py +++ b/core/main.py @@ -157,7 +157,7 @@ def main(conn, out): prefix = r'^(?:[' + commandprefix + ']|' command_re = prefix + inp.conn.nick - command_re += r'[:]+\s+)(\w+)(?:$|\s+)(.*)' + command_re += r'[,;:]+\s+)(\w+)(?:$|\s+)(.*)' m = re.match(command_re, inp.lastparam)