From 98c407bb4243fdb4b7b3683dd08a07bee91804d1 Mon Sep 17 00:00:00 2001 From: Alex Brow Date: Sun, 23 Feb 2020 22:08:57 -0500 Subject: [PATCH] math fix --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index accc803..0fc3165 100755 --- a/src/index.js +++ b/src/index.js @@ -288,7 +288,7 @@ client.on("message", async message => { ' i forgot', ' 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 }