This commit is contained in:
Alex Brow 2020-02-23 22:15:20 -05:00
parent e618f14302
commit a9c5368dbc
No known key found for this signature in database
GPG Key ID: F48926893F475C25
1 changed files with 1 additions and 1 deletions

View File

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