fix: emojis not showing up correctly in help embed

This commit is contained in:
Autumn Meadow 2022-01-27 18:43:11 -08:00
parent b6a160caef
commit 7dd88effb3
No known key found for this signature in database
GPG Key ID: 9E9BB6D25186E719

View File

@ -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);
}
}