fix squad

This commit is contained in:
Alex Brow 2020-02-17 00:26:38 -05:00
parent b604dfa5ea
commit 53028ba145
No known key found for this signature in database
GPG Key ID: F48926893F475C25
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ client.on("message", async message => {
min = Math.ceil(0);
max = Math.floor(11);
let rate = Math.floor(Math.random() * (max - min) + min); //The maximum is exclusive and the minimum is inclusive
return message.reply(`The squad rates this $rate out of 10`)
return message.reply(`The squad rates this ${rate} out of 10`)
}
});