diff options
author | makefu <github@syntax-fehler.de> | 2015-11-08 14:03:30 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-11-08 14:03:30 +0100 |
commit | cc32bb1e832b6cac2163aa1ed96d742190c2c283 (patch) | |
tree | 54ac7f2165b7295bc9cf5a5664fa92901b3840fa /reaktor/commands/tell-on_privmsg | |
parent | 07a3625f6582f9152c0944efd70376bf711493e6 (diff) |
Reaktor: fix issue with tell_on-privmsg, bump version
Diffstat (limited to 'reaktor/commands/tell-on_privmsg')
-rwxr-xr-x | reaktor/commands/tell-on_privmsg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reaktor/commands/tell-on_privmsg b/reaktor/commands/tell-on_privmsg index 5d0aff4..73163fa 100755 --- a/reaktor/commands/tell-on_privmsg +++ b/reaktor/commands/tell-on_privmsg @@ -7,8 +7,8 @@ if test "${FLOCK-}" != "$state_file"; then fi from="$_prefix" -to="$1"; shift -msg="$*" +to=${1%% *} +msg=${1#* } date=$(date) # TODO tell now, if already joined |