From b3ab294c2aad2b7fe333ed56fa9c8203157393b7 Mon Sep 17 00:00:00 2001 From: bignutty <3515180-bignutty@users.noreply.gitlab.com> Date: Fri, 17 Jan 2025 21:44:01 +0100 Subject: [PATCH] fix alignment on server owner --- commands/message/info/guild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/message/info/guild.js b/commands/message/info/guild.js index d59354f..e143089 100644 --- a/commands/message/info/guild.js +++ b/commands/message/info/guild.js @@ -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++) {