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])