From 7dd88effb3f931c543bdad93173c1de537b508f3 Mon Sep 17 00:00:00 2001 From: Autumn Meadow Date: Thu, 27 Jan 2022 18:43:11 -0800 Subject: [PATCH] fix: emojis not showing up correctly in help embed --- PluralKit.Bot/Commands/Help.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PluralKit.Bot/Commands/Help.cs b/PluralKit.Bot/Commands/Help.cs index 0e2477f7..3d5325d4 100644 --- a/PluralKit.Bot/Commands/Help.cs +++ b/PluralKit.Bot/Commands/Help.cs @@ -43,8 +43,8 @@ public class Help "Useful tips", String.Join("\n", new[] { $"React with {Emojis.Error} on a proxied message to delete it (only if you sent it!)", - "React with {Emojis.RedQuestion} on a proxied message to look up information about it (like who sent it)", - "React with {Emojis.Bell} on a proxied message to \"ping\" the sender", + $"React with {Emojis.RedQuestion} on a proxied message to look up information about it (like who sent it)", + $"React with {Emojis.Bell} on a proxied message to \"ping\" the sender", "Type **`pk;invite`** to get a link to invite this bot to your own server!" }) ), @@ -77,4 +77,4 @@ public class Help }); public Task Explain(Context ctx) => ctx.Reply(explanation); -} \ No newline at end of file +}