mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
fix(bot): remove extra spaces in raw system fields
This commit is contained in:
parent
c5613f1969
commit
0c802ab0bd
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue