From 9e268fbd989585630c301fec083643bdb6e87357 Mon Sep 17 00:00:00 2001 From: bignutty <3515180-bignutty@users.noreply.gitlab.com> Date: Mon, 12 May 2025 00:51:36 +0200 Subject: [PATCH] change icon to pencil --- commands/interaction/user/user.js | 2 +- commands/message/info/user.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/interaction/user/user.js b/commands/interaction/user/user.js index 2131431..7c769fe 100644 --- a/commands/interaction/user/user.js +++ b/commands/interaction/user/user.js @@ -45,7 +45,7 @@ module.exports = { cardContent += `\n${smallIconPill("id", "User ID")} ${smallPill(u.id)}`; if(u.globalName !== null) cardContent += `\n${smallIconPill("user_card", "Display Name")} ${smallPill(u.globalName)}` if(m && m.nick !== null) cardContent += `\n${smallIconPill("user_card", "Nickname")} ${smallPill(m.nick)}` - if (u.accentColor) cardContent += `\n${smallIconPill("user_card", "Accent Color")} ${smallPill(`#${u.accentColor.toString(16)}`)}` + if (u.accentColor) cardContent += `\n${smallIconPill("pencil", "Accent Color")} ${smallPill(`#${u.accentColor.toString(16)}`)}` if (u.clan && u.clan.tag !== null) cardContent += `\n${smallIconPill("shield", "Clan")} ${smallPill(u.clan.tag)}` if(u.hasFlag(1<<23)) cardContent += `\n-# Provisional Account` diff --git a/commands/message/info/user.js b/commands/message/info/user.js index 08584a7..2157c3d 100644 --- a/commands/message/info/user.js +++ b/commands/message/info/user.js @@ -51,7 +51,7 @@ module.exports = { cardContent += `\n${smallIconPill("id", "User ID")} ${smallPill(u.id)}`; if(u.globalName !== null) cardContent += `\n${smallIconPill("user_card", "Display Name")} ${smallPill(u.globalName)}` if(m && m.nick !== null) cardContent += `\n${smallIconPill("user_card", "Nickname")} ${smallPill(m.nick)}` - if (u.accentColor) cardContent += `\n${smallIconPill("user_card", "Accent Color")} ${smallPill(`#${u.accentColor.toString(16)}`)}` + if (u.accentColor) cardContent += `\n${smallIconPill("pencil", "Accent Color")} ${smallPill(`#${u.accentColor.toString(16)}`)}` if (u.clan && u.clan.tag !== null) cardContent += `\n${smallIconPill("shield", "Tag")} ${smallPill(u.clan.tag)}` if(u.hasFlag(1<<23)) cardContent += `\n-# Provisional Account`