From e6d1a1406ef37ed164b59693acdefc43a97b2f84 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 24 Nov 2025 14:08:48 +0100 Subject: [PATCH] refactor(commands/utils): now info will use the pwn emoji Changing the name of the pwn emoji previously dash --- src/commands/utils/info.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/commands/utils/info.ts b/src/commands/utils/info.ts index 9f5e587..8c5f917 100644 --- a/src/commands/utils/info.ts +++ b/src/commands/utils/info.ts @@ -42,7 +42,7 @@ function getUserBadges(userData: { if (userData.isDev) badges.push(emoji.badge.dev); if (userData.isEnium) badges.push(emoji.badge.enium); - if (userData.isPwn) badges.push(emoji.badge.dash); + if (userData.isPwn) badges.push(emoji.badge.pwn); if (userData.isBuyer) badges.push(emoji.badge.buyer); if (userData.isOwner) badges.push(emoji.badge.owner); @@ -52,9 +52,7 @@ function getUserBadges(userData: { export default { data: new SlashCommandBuilder() .setName('info') - .setDescription( - 'Show the infromation of one of these categories (user, server, bot)', - ) + .setDescription('Show the infromation of one of these categories (user, server, bot)') .addSubcommand((subcommand) => subcommand .setName('user')