Updated eslintrc and code

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-11-24 14:10:07 +01:00
parent 81cd6940b2
commit e6fc6296c4
7 changed files with 24 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ module.exports = {
/** @param { import('discord.js').ChatInputCommandInteraction } interaction */
async execute (interaction) {
async execute(interaction) {
await interaction.deferReply()

View File

@@ -7,6 +7,7 @@ module.exports = {
name: "check",
description: "Check a player's stats.",
type: "slash",
dev: true,
data: new SlashCommandBuilder()
.setName("check")

View File

@@ -38,4 +38,4 @@ module.exports = {
await interaction.reply({ content: "Set the nickname of " + userMention(member.id) + " to " + nickname, ephemeral: true })
}
}
}