Browse Source

Fix formatting

pull/9/head
Abheek Dhawan 4 years ago
parent
commit
985b94789d
  1. 7
      bot/awesomescibo.js

7
bot/awesomescibo.js

@ -313,7 +313,6 @@ async function generateRound(message) {
}
});
let i;
let generatingMsg = await message.channel.send("Generating...");
for (i = 1; i < 26; i++) {
let tossup_question;
let question_category;
@ -356,6 +355,8 @@ async function generateRound(message) {
bonus_answer +
"<br><br>";
htmlContent = htmlContent.replace(/\n/g, "<br>");
});
}
newGeneratedRound = new generatedRound({
htmlContent: htmlContent,
requestedBy: message.author.tag,
@ -365,10 +366,6 @@ async function generateRound(message) {
? console.log("Error creating saving generated round content")
: console.log("Sucessfully created new entry for the generated round")
);
});
if (generatingMsg) {
generatingMsg.delete({ timeout: 100 }).catch(console.error);
}
message.channel.send("Check database");
}

Loading…
Cancel
Save