Better matching for commands.

This commit is contained in:
Storm Dragon 2021-04-16 15:01:15 -04:00
parent 6712003387
commit 85e832d625
1 changed files with 1 additions and 1 deletions

2
bot.sh
View File

@ -149,7 +149,7 @@ tail -f "$input" | telnet "$server" "$port" | while read -r result ; do
set -f
# Although this calls modules, it triggers on text other than the bot's nick
# To make sure that modules are only called when they are supposed to be, had to combine string monipulation with regexp.
elif [[ "${result#:*:}" =~ ^[${botCaller}][a-zA-Z0-9_].* ]]; then
elif [[ "${result#:*PRIVMSG*:}" =~ ^[${botCaller}][a-zA-Z0-9_].* ]]; then
command="${result#*:[[:punct:]]}"
command="${command//# /}"
will="${command#* }"