Files
illegitimate-bot/events/interactions/logBtnsCmds.js
2023-11-18 19:05:26 +01:00

22 lines
689 B
JavaScript

module.exports = {
name: "logBtnsCmds",
description: "Logs all button and command interactions",
type: "interaction",
/** @param { import('discord.js').ChatInputCommandInteraction } interaction */
execute(interaction) {
if (interaction.isCommand()) {
console.log(interaction.user.username + "#" +
interaction.user.discriminator + " ran " +
interaction.commandName
);
} else if (interaction.isButton()) {
console.log(interaction.user.username + "#" +
interaction.user.discriminator + " clicked " +
interaction.customId
);
}
}
}