From 45258d5e4b9ce1440a974ad7a5c1177061d5c068 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 25 Jun 2023 02:08:28 -0400 Subject: [PATCH] Updated verbose text for interaction create --- Server/events/interactionCreate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/events/interactionCreate.js b/Server/events/interactionCreate.js index 01240c5..d7da092 100644 --- a/Server/events/interactionCreate.js +++ b/Server/events/interactionCreate.js @@ -9,7 +9,7 @@ module.exports = { name: Events.InteractionCreate, async execute(interaction) { const command = interaction.client.commands.get(interaction.commandName); - log.VERBOSE("Interaction for command: ", command); + log.VERBOSE("Interaction created for command: ", command); // Execute autocomplete if the user is checking autocomplete if (interaction.isAutocomplete()) {