diff --git a/src/index.js b/src/index.js index 1472b04..13bc722 100755 --- a/src/index.js +++ b/src/index.js @@ -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]}`) } ////////////////////////////////////////////////////////////////////////////////