From a2417e5f06be8b693a3caeb2eccf53ce0c4a4373 Mon Sep 17 00:00:00 2001 From: Iris System Date: Tue, 26 Aug 2025 09:46:45 +1200 Subject: [PATCH] fix(bot): smaller header for cv2 cards --- PluralKit.Bot/Services/EmbedService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PluralKit.Bot/Services/EmbedService.cs b/PluralKit.Bot/Services/EmbedService.cs index d82d45cb..5a229ad6 100644 --- a/PluralKit.Bot/Services/EmbedService.cs +++ b/PluralKit.Bot/Services/EmbedService.cs @@ -143,7 +143,7 @@ public class EmbedService new MessageComponent() { Type = ComponentType.Text, - Content = $"## {systemName ?? $"`{system.DisplayHid(cctx.Config)}`"}{premiumText}", + Content = $"### {systemName ?? $"`{system.DisplayHid(cctx.Config)}`"}{premiumText}", }, ]; @@ -425,7 +425,7 @@ public class EmbedService new MessageComponent() { Type = ComponentType.Text, - Content = $"## {name}{(systemName != null ? $" ({systemName})" : "")}", + Content = $"### {name}{(systemName != null ? $" ({systemName})" : "")}", }, ]; @@ -612,7 +612,7 @@ public class EmbedService new MessageComponent() { Type = ComponentType.Text, - Content = $"## {name}{(systemName != null ? $" ({systemName})" : "")}", + Content = $"### {name}{(systemName != null ? $" ({systemName})" : "")}", }, ];