diff --git a/source/events/interactionCreate.js b/source/events/interactionCreate.js index 39b010c9..dca932a0 100644 --- a/source/events/interactionCreate.js +++ b/source/events/interactionCreate.js @@ -110,7 +110,7 @@ module.exports = { `No command matching ${commandName} was found.` ) - executeCommand(command, 'command') + executeCommand(command, 'commands') } if (interaction.isAutocomplete()) { const commandName = interaction.commandName @@ -136,7 +136,7 @@ module.exports = { `No context matching ${contextName} was found.` ) - executeCommand(context, 'context') + executeCommand(context, 'contexts') } }, }