mass power

This commit is contained in:
Alex Brow 2020-02-24 00:03:30 -05:00
parent 7360cafec1
commit 1a00b78288
No known key found for this signature in database
GPG Key ID: F48926893F475C25
1 changed files with 3 additions and 2 deletions

View File

@ -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 '<USER> quote stuff like egg eegg egg mommmmy'
let quotes = [
'<Airman, hydrated> Im a segregationist',
@ -296,7 +296,8 @@ client.on("message", async message => {
'<Director krennic> we have a log you daft idiot',
'<SSAI> I\'m trying to learn how to make a car bomb and get it past the isreali border\n<sara mist> Okay boomer',
'<Rodrigo Duterte, 16th President of the Philippines> Please dont 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])