From fbef45489457a2198357dc4dd303740d79036784 Mon Sep 17 00:00:00 2001 From: Raiden-Ei Date: Sat, 8 Jan 2022 09:41:22 +0900 Subject: [PATCH] fix(Structues): rename old module's name (#7207) --- .../src/structures/MessageContextMenuCommandInteraction.js | 4 ++-- .../src/structures/UserContextMenuCommandInteraction.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/discord.js/src/structures/MessageContextMenuCommandInteraction.js b/packages/discord.js/src/structures/MessageContextMenuCommandInteraction.js index 6b839db81..110059145 100644 --- a/packages/discord.js/src/structures/MessageContextMenuCommandInteraction.js +++ b/packages/discord.js/src/structures/MessageContextMenuCommandInteraction.js @@ -1,10 +1,10 @@ 'use strict'; -const ContextMenuCommandInteraction = require('./ContextMenuInteraction'); +const ContextMenuCommandInteraction = require('./ContextMenuCommandInteraction'); /** * Represents a message context menu interaction. - * @extends {ContextMenuInteraction} + * @extends {ContextMenuCommandInteraction} */ class MessageContextMenuCommandInteraction extends ContextMenuCommandInteraction { /** diff --git a/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js b/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js index 320b39419..a074de1ad 100644 --- a/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js +++ b/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js @@ -1,6 +1,6 @@ 'use strict'; -const ContextMenuCommandInteraction = require('./ContextMenuInteraction'); +const ContextMenuCommandInteraction = require('./ContextMenuCommandInteraction'); /** * Represents a user context menu interaction.