From 84d1b62309482ebbd2978fc2a12ea0f7ce87df82 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 10 Jul 2020 22:59:38 -0500 Subject: [PATCH] adding some more verbal abuse --- src/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 2a45847..b499fb6 100755 --- a/src/index.js +++ b/src/index.js @@ -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}`) }