Change random to print the result

This commit is contained in:
Nick Chambers 2021-07-10 19:23:10 -05:00 committed by Nick Chambers
parent 88b4022ee0
commit 32b421be82
1 changed files with 1 additions and 1 deletions

2
rowbot
View File

@ -79,7 +79,7 @@ is_running () {
random() {
local min=$1 max=$2
(( (RANDOM % max) + min ))
printf %d "$(( (RANDOM % max) + min ))"
}
run_callbacks() {