diff options
Diffstat (limited to 'src/context-menu-commands/user/userInfo.ts')
-rw-r--r-- | src/context-menu-commands/user/userInfo.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/context-menu-commands/user/userInfo.ts b/src/context-menu-commands/user/userInfo.ts index 80e9883..075b681 100644 --- a/src/context-menu-commands/user/userInfo.ts +++ b/src/context-menu-commands/user/userInfo.ts @@ -1,4 +1,5 @@ import { UserInfoCommand } from '#commands'; +import { format } from '#lib'; import { ContextMenuCommand } from 'discord-akairo'; import { ApplicationCommandType, type ContextMenuCommandInteraction, type Guild } from 'discord.js'; @@ -20,7 +21,7 @@ export default class UserInfoContextMenuCommand extends ContextMenuCommand { const guild = interaction.guild as Guild; const member = await guild.members.fetch(interaction.targetId).catch(() => null); - if (!member) return interaction.reply(`${util.format.input(user.tag)} doesn't appear to be a member of this server anymore.`); + if (!member) return interaction.reply(`${format.input(user.tag)} doesn't appear to be a member of this server anymore.`); const userEmbed = await UserInfoCommand.makeUserInfoEmbed(user, member, guild); |