Browse Source

Add hits to rounds command

pull/10/head
Abheek Dhawan 4 years ago
parent
commit
443d3efaa6
  1. 8
      bot/awesomescibo.js

8
bot/awesomescibo.js

@ -433,6 +433,11 @@ async function rounds(action, interaction) {
embeds: [roundsEmbed],
ephemeral: true
});
} else if (action === "hit"){
let totalCount = await generatedRound.countDocuments({});
let userCount = await generatedRound.countDocuments({ requestedBy: interaction.author.id });
interaction.reply(`Total Hits: ${totalCount}\nYour Hits: ${userCount}`);
}
}
@ -492,9 +497,6 @@ client.on("message", async (message) => {
case "dobeabout": // Show about message of bot
aboutMessage(message);
break;
case "dobehits":
hits(message);
break;
case "dobechangelog":
changelog(message);
break;

Loading…
Cancel
Save