From e09433b597c5c806044f7c05fa2e8e324a200653 Mon Sep 17 00:00:00 2001 From: Alex Brow Date: Sun, 23 Feb 2020 23:48:23 -0500 Subject: [PATCH] more --- src/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 08f8d12..1468ad7 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(19); + max = Math.floor(21); // Quote format ' quote stuff like egg eegg egg mommmmy' let quotes = [ ' Im a segregationist', @@ -293,7 +293,9 @@ client.on("message", async message => { ' I support jihad', ' That guy is not just a tool, he\'s the entire home depot.', ' 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' + ' 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' ] let number = Math.floor(Math.random() * (max - min) + min) //The maximum is exclusive and the minimum is inclusive return message.channel.send(quotes[number])