Linting
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { DebugBuilder } from "../../modules/debugger.mjs";
|
||||
const log = new DebugBuilder("server", "discordBot.events.interactionCreate");
|
||||
import { Events } from 'discord.js';
|
||||
import { Events } from "discord.js";
|
||||
|
||||
export const name = Events.InteractionCreate;
|
||||
|
||||
@@ -22,7 +22,9 @@ export async function execute(nodeIo, interaction) {
|
||||
return;
|
||||
}
|
||||
|
||||
log.INFO(`${interaction.member.user} is running '${interaction.commandName}'`);
|
||||
log.INFO(
|
||||
`${interaction.member.user} is running '${interaction.commandName}'`,
|
||||
);
|
||||
|
||||
// Defer the initial reply if the command has the parameter set
|
||||
if (command.deferInitialReply) {
|
||||
@@ -31,4 +33,4 @@ export async function execute(nodeIo, interaction) {
|
||||
|
||||
// Execute the command
|
||||
command.execute(nodeIo, interaction);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user