diff --git a/commands/Common/help.js b/commands/Common/help.js index 2516289..d2d5ff2 100644 --- a/commands/Common/help.js +++ b/commands/Common/help.js @@ -117,14 +117,16 @@ module.exports = { collecter.on("end", async () => { try { - await interaction.editReply({ - embeds: [ - new EmbedBuilder() - .setColor(Colors.Yellow) - .setTitle(locale.getLocaleString("command.help.timeout")) - ], - components: [] - }); + if (message) { + await interaction.editReply({ + embeds: [ + new EmbedBuilder() + .setColor(Colors.Yellow) + .setTitle(locale.getLocaleString("command.help.timeout")) + ], + components: [] + }); + } } catch (err) { console.error(err); }