From 077ef28af88c4f1fd1c13d5faf99db5e38d685dd Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Sat, 15 May 2021 20:05:05 -0500 Subject: [PATCH] Move embed to options --- bot/awesomescibo.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index c9e8837..1bd7f79 100755 --- a/bot/awesomescibo.js +++ b/bot/awesomescibo.js @@ -434,7 +434,10 @@ async function rounds(action, interaction) { .setDescription(finalMessage) .setTimestamp(); - interaction.reply(roundsEmbed, { ephemeral: true }); + interaction.reply({ + embeds: [roundsEmbed], + ephemeral: true + }); } }