From 0df23221c259e391b428346d9663dc295a07234f Mon Sep 17 00:00:00 2001 From: Alex Brow Date: Sun, 23 Feb 2020 22:19:06 -0500 Subject: [PATCH] brub --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 7eb0a25..1700b4c 100755 --- a/src/index.js +++ b/src/index.js @@ -289,7 +289,7 @@ client.on("message", async message => { ' 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]) } });