mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-07 13:43:06 -04:00
change icon to pencil
This commit is contained in:
parent
0bc0186b72
commit
9e268fbd98
2 changed files with 2 additions and 2 deletions
|
@ -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`
|
||||
|
|
|
@ -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`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue