This commit is contained in:
Alex Brow 2020-02-23 22:17:41 -05:00
parent a9c5368dbc
commit 5343bc9331
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'
]
let number = Math.floor(Math.random() * (max - min) + min)]) //The maximum is exclusive and the minimum is inclusive
let number = Math.floor(Math.random() * (max - min) + min) //The maximum is exclusive and the minimum is inclusive
return message.channerl.send(quotes[number])
}