diff options
author | makefu <root@pigstarter.de> | 2013-12-18 23:44:34 +0100 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2013-12-18 23:44:34 +0100 |
commit | 2194bdd4b47a31606aadf53af1b258ace593adaf (patch) | |
tree | 90b9232a62dce3aae6f38e649c28e4a646c62b92 | |
parent | 481ab0216f9d877b8cb8bd70e8d0d024d0d86b7d (diff) |
Reaktor: add respond to solve complexity in config
-rwxr-xr-x | commands/respond | 2 | ||||
-rw-r--r-- | config.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/commands/respond b/commands/respond new file mode 100755 index 0000000..e23dc3e --- /dev/null +++ b/commands/respond @@ -0,0 +1,2 @@ +#!/bin/sh +printf '%s\n' "${_from}: $*" @@ -30,7 +30,7 @@ commands = [ default_command('nocommand'), # command not found { 'pattern': '^(?:' + name + '|\\*):.*', - 'argv': [ 'commands/say', '{TODO:fromname}: you are made of stupid!' ] }, + 'argv': [ 'commands/respond','You are made of stupid!'] }, # "highlight" { 'pattern': '.*\\b' + name + '\\b.*', 'argv': [ 'commands/say', 'I\'m famous' ] } |