Updated interactionCreate event

This commit is contained in:
Christer Warén 2021-08-31 10:47:39 +03:00
parent 5df88494b0
commit b5d5ca1fe6

View File

@ -3,13 +3,28 @@ import Discord from "discord.js";
module.exports = { module.exports = {
name: 'interactionCreate', name: 'interactionCreate',
async execute(client, interaction) { async execute(client, interaction) {
if (!interaction.isCommand()) return; /*if (!interaction.isCommand()) return;*/
const permissions = interaction.channel.permissionsFor(interaction.client.user);
if (!permissions.has('EMBED_LINKS')) return interaction.send(client.messages.noPermsEmbed);
if(interaction.isCommand()){
const commandName = interaction.commandName; const commandName = interaction.commandName;
const command = client.commands.get(commandName); const command = client.commands.get(commandName);
if (!command) return; if (!command) return;
const permissions = interaction.channel.permissionsFor(interaction.client.user);
if (!permissions.has('EMBED_LINKS')) return interaction.send(client.messages.noPermsEmbed); try {
command.execute(interaction, client, Discord, command);
} catch (error) {
interaction.reply(client.messages.runningCommandFailed);
console.error(error);
}
} else if (interaction.isSelectMenu()){
} else if (interaction.isButton()){
const commandName = interaction.customId;
const command = client.commands.get(commandName);
if (!command) return;
try { try {
command.execute(interaction, client, Discord, command); command.execute(interaction, client, Discord, command);
@ -18,4 +33,5 @@ module.exports = {
console.error(error); console.error(error);
} }
} }
}
} }