diff options
author | tv <tv@nomic.retiolum> | 2014-04-25 12:52:35 +0200 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2014-04-25 12:52:35 +0200 |
commit | 3938e79f08c18f467708808b00a2dc39cf581680 (patch) | |
tree | 02e52a843c652013499f994ddd676926e4f80004 /Reaktor | |
parent | 5efd6c0b11ce5b0ab3ec5975bfe6125af7eb6ea4 (diff) | |
parent | 2ac7e46d6f242e299d2ad2a3f631dd45d3d95cba (diff) |
Merge branch 'master' of github:krebscode/painload
Diffstat (limited to 'Reaktor')
-rw-r--r-- | Reaktor/config.py | 2 | ||||
-rw-r--r-- | Reaktor/titlebot/titlebot.py | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/Reaktor/config.py b/Reaktor/config.py index db4c8a3e..0a01c5cb 100644 --- a/Reaktor/config.py +++ b/Reaktor/config.py @@ -46,7 +46,7 @@ public_commands = [ 'argv': [ 'commands/say', 'I\'m famous' ] }, # identify via direct connect { 'capname': 'identify', - 'pattern': 'identify' + '\\s*(?:\\s+(?P<args>.*))?$', + 'pattern': '^identify' + '\\s*(?:\\s+(?P<args>.*))?$', 'argv' : [ 'commands/identify' ]} ] commands = [ diff --git a/Reaktor/titlebot/titlebot.py b/Reaktor/titlebot/titlebot.py index d04789c3..dc4e28ae 100644 --- a/Reaktor/titlebot/titlebot.py +++ b/Reaktor/titlebot/titlebot.py @@ -33,7 +33,7 @@ def default_command(cmd): 'capname': cmd, 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P<args>.*))?$', 'argv': [ 'commands/' + cmd ] } -def dot_command(cmd): +def titlebot_cmd(cmd): return { 'capname': cmd, 'pattern': '\\.' + cmd + '\\s*(?:\\s+(?P<args>.*))?$', @@ -46,19 +46,19 @@ public_commands = [ default_command('rev'), default_command('uptime'), default_command('nocommand'), - dot_command('list'), - dot_command('help'), - dot_command('up'), - dot_command('new'), - dot_command('undo'), - dot_command('down'), + titlebot_cmd('list'), + titlebot_cmd('help'), + titlebot_cmd('up'), + titlebot_cmd('new'), + titlebot_cmd('undo'), + titlebot_cmd('down'), # identify via direct connect { 'capname': 'identify', - 'pattern': 'identify' + '\\s*(?:\\s+(?P<args>.*))?$', + 'pattern': '^identify' + '\\s*(?:\\s+(?P<args>.*))?$', 'argv' : [ 'commands/identify' ]} ] commands = [ default_command('reload'), - dot_command('clear') + titlebot_cmd('clear') ] |