change icon to pencil

This commit is contained in:
bignutty 2025-05-12 00:51:36 +02:00
parent 0bc0186b72
commit 9e268fbd98
2 changed files with 2 additions and 2 deletions

View file

@ -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`