diff --git a/events/client/interactionCreate.js b/events/client/interactionCreate.js
index b075f2e7..87aa3121 100644
--- a/events/client/interactionCreate.js
+++ b/events/client/interactionCreate.js
@@ -61,7 +61,7 @@ export default {
 		}
 		catch (error) {
 			console.error(error);
-			await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
+			await interaction.followUp({ content: 'There was an error while executing this command!', ephemeral: true });
 		}
 	},
 };