Updated interactionCreate & messageCreate events

This commit is contained in:
Christer Warén 2021-09-02 12:54:39 +03:00
parent b6c47d7c6f
commit c4fb1d5147
2 changed files with 12 additions and 3 deletions

View File

@ -16,7 +16,10 @@ module.exports = {
try { try {
command.execute(interaction, client, Discord, command); command.execute(interaction, client, Discord, command);
} catch (error) { } catch (error) {
interaction.reply(client.messages.runningCommandFailed); interaction.reply({
content: client.messages.runningCommandFailed,
ephemeral: true
});
console.error(error); console.error(error);
} }
} else if (interaction.isSelectMenu() || interaction.isButton()){ } else if (interaction.isSelectMenu() || interaction.isButton()){
@ -27,7 +30,10 @@ module.exports = {
try { try {
command.execute(interaction, client, Discord, command); command.execute(interaction, client, Discord, command);
} catch (error) { } catch (error) {
interaction.reply(client.messages.runningCommandFailed); interaction.reply({
content: client.messages.runningCommandFailed,
ephemeral: true
});
console.error(error); console.error(error);
} }
} }

View File

@ -44,7 +44,10 @@ module.exports = {
msg.delete(); msg.delete();
}, 30000); }, 30000);
} catch (error) { } catch (error) {
msg.reply(client.messages.runningCommandFailed); msg.reply({
content: client.messages.runningCommandFailed,
ephemeral: true
});
console.error(error); console.error(error);
} }
} }