diff --git a/commands/interaction/slash/info/user.js b/commands/interaction/slash/info/user.js index 650ab45..1e8e2a8 100644 --- a/commands/interaction/slash/info/user.js +++ b/commands/interaction/slash/info/user.js @@ -63,6 +63,7 @@ module.exports = { if(u.globalName !== null) usernameDisplay += `\n${smallIconPill("user_card", "Display Name")} ${smallPill(u.globalName)}` if (m && m.nick !== null) usernameDisplay += `\n${smallIconPill("user_card", "Nickname")} ${smallPill(m.nick)}` + if (u.clan && u.clan.tag !== null) usernameDisplay += `\n${smallIconPill("shield", "Clan")} ${smallPill(u.clan.tag)}` let userCard = createEmbed("default", context, { description: `${icon("user")} ${usernameDisplay}`, diff --git a/commands/interaction/user/user.js b/commands/interaction/user/user.js index 304a981..b40b57f 100644 --- a/commands/interaction/user/user.js +++ b/commands/interaction/user/user.js @@ -42,6 +42,7 @@ module.exports = { if(u.globalName !== null) usernameDisplay += `\n${smallIconPill("user_card", "Display Name")} ${smallPill(u.globalName)}` if (m && m.nick !== null) usernameDisplay += `\n${smallIconPill("user_card", "Nickname")} ${smallPill(m.nick)}` + if (u.clan && u.clan.tag !== null) usernameDisplay += `\n${smallIconPill("shield", "Clan")} ${smallPill(u.clan.tag)}` let userCard = createEmbed("default", context, { description: `${icon("user")} ${usernameDisplay}`, diff --git a/commands/message/info/user.js b/commands/message/info/user.js index 29c421f..01e0352 100644 --- a/commands/message/info/user.js +++ b/commands/message/info/user.js @@ -53,6 +53,7 @@ module.exports = { if(u.globalName !== null) usernameDisplay += `\n${smallIconPill("user_card", "Display Name")} ${smallPill(u.globalName)}` if(m && m.nick !== null) usernameDisplay += `\n${smallIconPill("user_card", "Nickname")} ${smallPill(m.nick)}` + if (u.clan && u.clan.tag !== null) usernameDisplay += `\n${smallIconPill("shield", "Clan")} ${smallPill(u.clan.tag)}` let userCard = createEmbed("default", context, { description: `${icon("user")} ${usernameDisplay}`,