Fixed a small bug in bye.sh.

This commit is contained in:
Storm Dragon 2016-09-12 13:28:47 -04:00
parent 3392864263
commit eaab1500c4

View File

@ -9,5 +9,5 @@ bye=(
"Bye $1."
"Alas $1, you will be missed."
)
msg "$2" "$1: ${bye[$(($RANDOM % ${#bye[@]}))]}"
msg "$2" "${bye[$(($RANDOM % ${#bye[@]}))]}"
esac