From 0c802ab0bd12686dc746fec02e6412c4716f0e2a Mon Sep 17 00:00:00 2001 From: Petal Ladenson Date: Thu, 7 Nov 2024 19:02:57 -0700 Subject: [PATCH] fix(bot): remove extra spaces in raw system fields --- PluralKit.Bot/Commands/SystemEdit.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index df7ce329..1e4e7884 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -49,7 +49,7 @@ public class SystemEdit if (format == ReplyFormat.Raw) { - await ctx.Reply($"` ``\n{target.Name}\n` ``"); + await ctx.Reply($"```\n{target.Name}\n```"); return; } if (format == ReplyFormat.Plaintext) @@ -114,7 +114,7 @@ public class SystemEdit if (format == ReplyFormat.Raw) { - await ctx.Reply($"` ``\n{settings.DisplayName}\n` ``"); + await ctx.Reply($"```\n{settings.DisplayName}\n```"); return; } if (format == ReplyFormat.Plaintext) @@ -177,7 +177,7 @@ public class SystemEdit if (format == ReplyFormat.Raw) { - await ctx.Reply($"` ``\n{target.Description}\n` ``"); + await ctx.Reply($"```\n{target.Description}\n```"); return; } if (format == ReplyFormat.Plaintext)