aboutsummaryrefslogtreecommitdiff
path: root/bot/src/events/InteractionCreate.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-29 17:20:25 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-29 17:20:25 -0400
commitdb6df8c2a3817a753a9b903feb6311c620a91a65 (patch)
tree866153f9f2131e0d80bcef3b3c070723ba43515c /bot/src/events/InteractionCreate.js
parentf18f5fff1fd0b8336df464d6e6f62efbc29aa618 (diff)
downloadAleeBot-db6df8c2a3817a753a9b903feb6311c620a91a65.tar.gz
AleeBot-db6df8c2a3817a753a9b903feb6311c620a91a65.tar.bz2
AleeBot-db6df8c2a3817a753a9b903feb6311c620a91a65.zip
New command; Removed "Message too long" for content field
Diffstat (limited to 'bot/src/events/InteractionCreate.js')
-rw-r--r--bot/src/events/InteractionCreate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/events/InteractionCreate.js b/bot/src/events/InteractionCreate.js
index 777ce39..5143594 100644
--- a/bot/src/events/InteractionCreate.js
+++ b/bot/src/events/InteractionCreate.js
@@ -15,7 +15,7 @@ export default {
if (!command) return;
try {
- console.log(`[i] ${interaction.user.username} has executed ${command.data.name}`);
+ console.log(`[i] ${interaction.user.username} has executed ${command.data.name} at ${interaction.guild.name}`);
await Analytics(command, interaction);
await command.execute(interaction);
} catch (e) {