aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcommands/respond2
-rw-r--r--config.py2
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}: $*"
diff --git a/config.py b/config.py
index ce86faa..0ae7681 100644
--- a/config.py
+++ b/config.py
@@ -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' ] }