From a945b873c3fda6c26ddc15b10067dc7c60e24cfd Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Sun, 16 May 2021 14:40:33 -0500 Subject: [PATCH] Make sure to reply with the about bot embed --- bot/awesomescibo.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index bdf59c8..aeb350b 100755 --- a/bot/awesomescibo.js +++ b/bot/awesomescibo.js @@ -426,6 +426,8 @@ async function about(action, interaction) { .addField("Servers", client.guilds.cache.size, true) .addField("Training Users", await userScore.countDocuments({})) .setTimestamp(); + + interaction.reply(aboutBotEmbed); } }