crash hotfix

This commit is contained in:
2023-06-16 22:16:53 +02:00
parent 147701651a
commit 6e9a087f9d
+2 -2
View File
@@ -71,12 +71,12 @@ client.on(Events.InteractionCreate, async (interaction) => {
await interaction.followUp({ await interaction.followUp({
content: 'There was an error while executing this command!', content: 'There was an error while executing this command!',
ephemeral: true ephemeral: true
}) }).catch(e => {})
} else { } else {
await interaction.reply({ await interaction.reply({
content: 'There was an error while executing this command!', content: 'There was an error while executing this command!',
ephemeral: true ephemeral: true
}) }).catch(e => {})
} }
} }
}) })