This commit is contained in:
Alex 2020-07-12 17:58:26 -05:00
parent aeb04580e0
commit 0c9954a41f
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ client.on("message", async message => {
}
if (command === "va") {
let num = Math.floor(Math.random() * (config.abuse.length + 1)); //The maximum is exclusive and the minimum is inclusive
let num = Math.floor(Math.random() * (config.verbalabuse.length + 1)); //The maximum is exclusive and the minimum is inclusive
return message.reply(`${config.verbalabuse[num]}`)
}
////////////////////////////////////////////////////////////////////////////////