This commit is contained in:
Alex Brow 2020-02-23 22:19:06 -05:00
parent 5343bc9331
commit 0df23221c2
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.channerl.send(quotes[number])
return message.channel.send(quotes[number])
}
});