From 1a00b78288a5d15ab9102e32d9901965aedfaa07 Mon Sep 17 00:00:00 2001 From: Alex Brow Date: Mon, 24 Feb 2020 00:03:30 -0500 Subject: [PATCH] mass power --- src/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 607f386..cc48f94 100755 --- a/src/index.js +++ b/src/index.js @@ -272,7 +272,7 @@ client.on("message", async message => { }; if (command === "quote") { min = Math.ceil(0); - max = Math.floor(21); + max = Math.floor(23); // Quote format ' quote stuff like egg eegg egg mommmmy' let quotes = [ ' Im a segregationist', @@ -296,7 +296,8 @@ client.on("message", async message => { ' we have a log you daft idiot', ' I\'m trying to learn how to make a car bomb and get it past the isreali border\n Okay boomer', ' Please don’t order me around. … Or would you rather that I declare martial law?', - 'https://cdn.discordapp.com/attachments/521522780341141540/681344502593617921/image0.jpg' + 'https://cdn.discordapp.com/attachments/521522780341141540/681344502593617921/image0.jpg', + 'We\'ve backed off in good faith to try to give you a chance to straighten this problem out. But I am going to beg with you for a minute. I\'m going to plead with you, do not cross us. Because if you do, the survivors will write about what we do here for 10,000 years.' ] let number = Math.floor(Math.random() * (max - min) + min) //The maximum is exclusive and the minimum is inclusive return message.channel.send(quotes[number])