This commit is contained in:
Alex Brow 2020-02-23 22:08:57 -05:00
parent 26a5323778
commit 98c407bb42
No known key found for this signature in database
GPG Key ID: F48926893F475C25
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ client.on("message", async message => {
'<aviadarius> i forgot',
'<N29UB> Asia is a continent'
]
return message.channerel.send(quotes[Math.floor(Math.random() * (max - min)) + min)]) //The maximum is exclusive and the minimum is inclusive
return message.channerel.send(quotes[Math.floor(Math.random() * (max - min) + min)]) //The maximum is exclusive and the minimum is inclusive
}