fix alignment on server owner

This commit is contained in:
bignutty 2025-01-17 21:44:01 +01:00
parent cd5acf480c
commit b3ab294c2a

View file

@ -44,7 +44,7 @@ module.exports = {
if(g.roles.length >= 2) pills.push(smallIconPill("user_shield", `${g.roles.length} Roles`))
if(emojis.length >= 1) pills.push(smallIconPill("emoji", emojis.length + " Emoji"))
if(channels.length >= 1) pills.push(smallIconPill("channel", g.channels.length + " Channels"))
if(g.owner) pills.push(`${icon("user_king")} <@${g.owner.id}>`)
if(g.owner) pills.push(`${icon("user_king")}  <@${g.owner.id}>`)
let pillDisplay = ""
for (let i = 0; i < pills.length; i++) {