From 49f7d0fa97269ccc5da5c513ac7f7ccf085e43fd Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Sun, 2 May 2021 13:40:26 -0500 Subject: [PATCH] Add chemistry as a subject for generated rounds --- bot/awesomescibo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index ee28caf..696fb73 100755 --- a/bot/awesomescibo.js +++ b/bot/awesomescibo.js @@ -316,7 +316,7 @@ async function generateRound(message) { let bonus_format; let bonus_answer; let htmlContent = ""; - await axios.post("https://scibowldb.com/api/questions", { categories: ["BIOLOGY", "PHYSICS", "EARTH AND SPACE", "ASTRONOMY", "MATH"] }) + await axios.post("https://scibowldb.com/api/questions", { categories: ["BIOLOGY", "PHYSICS", "CHEMISTRY", "EARTH AND SPACE", "ASTRONOMY", "MATH"] }) .then((response) => { for (i = 1; i < 26; i++) { data = response.data.questions[Math.floor(Math.random() * response.data.questions.length)];