adding some more verbal abuse

This commit is contained in:
Alex 2020-07-10 22:59:38 -05:00
parent e2b95f5aec
commit 84d1b62309
1 changed files with 4 additions and 1 deletions

View File

@ -141,7 +141,7 @@ client.on("message", async message => {
if(command === "va"){
let msg = ""
let num = Math.floor(Math.random() * (3 - 1) + 1); //The maximum is exclusive and the minimum is inclusive
let num = Math.floor(Math.random() * (5 - 1) + 1); //The maximum is exclusive and the minimum is inclusive
switch(num){
case 1:
msg = "its simple, mind over matter. i dont mind, and you dont fucking matter";
@ -152,6 +152,9 @@ client.on("message", async message => {
case 3:
msg = "you are living proof darwinism is dead, hell, even reversing.";
break;
case 4:
msg = "may you never reproduce"
break;
}
return message.reply(`${msg}`)
}