From 17051db7aadfe13e5c46ab6ac3c92cd4fddf6466 Mon Sep 17 00:00:00 2001 From: Taken Date: Tue, 18 Apr 2023 22:12:28 +0200 Subject: [PATCH] Minor fix --- commands-contextmenu/resetnick.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands-contextmenu/resetnick.js b/commands-contextmenu/resetnick.js index 676dddd..9344417 100644 --- a/commands-contextmenu/resetnick.js +++ b/commands-contextmenu/resetnick.js @@ -1,12 +1,12 @@ const { ContextMenuCommandBuilder, ApplicationCommandType, PermissionFlagsBits } = require('discord.js'); module.exports = { - name: 'Reset Nickname', + name: 'resetnick', description: 'Reset your nickname.', type: 'contextmenu', data: new ContextMenuCommandBuilder() - .setName('resetnick') + .setName('Reset Nickname') .setType(ApplicationCommandType.User) .setDefaultMemberPermissions(PermissionFlagsBits.ManageNicknames),