Move to ephemeral

This commit is contained in:
Skylar Grant 2022-06-11 17:35:08 -04:00
parent 5bb4dd561c
commit 70506ae20b
2 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ const functions = {
const pastasString = pastasArray.join('\n'); const pastasString = pastasArray.join('\n');
pastasEmbed.setDescription(pastasString); pastasEmbed.setDescription(pastasString);
return { embeds: [pastasEmbed] }; return { embeds: [pastasEmbed], ephemeral: true };
}, },
gifs(commandData) { gifs(commandData) {
const gifsArray = []; const gifsArray = [];

View File

@ -28,6 +28,6 @@ module.exports = {
name: row.name, name: row.name,
}); });
} }
interaction.reply({ content: fn.embeds.pastas(commandData), ephemeral: true }); interaction.reply(fn.embeds.pastas(commandData));
}, },
}; };