From e8068cc1a9bfc700926baf92b98ce10bfc8bb1dc Mon Sep 17 00:00:00 2001 From: Ske Date: Thu, 4 Jun 2020 16:24:30 +0200 Subject: [PATCH] Add avatar credit for June --- PluralKit.Bot/Commands/Help.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/Help.cs b/PluralKit.Bot/Commands/Help.cs index 9e6c72bb..9925c2cb 100644 --- a/PluralKit.Bot/Commands/Help.cs +++ b/PluralKit.Bot/Commands/Help.cs @@ -8,6 +8,7 @@ namespace PluralKit.Bot { public class Help { + private const string AvatarCredit = "Avatar (for June) by @detective zikachu#8899"; public async Task HelpRoot(Context ctx) { await ctx.Reply(embed: new DiscordEmbedBuilder() @@ -19,7 +20,7 @@ namespace PluralKit.Bot .AddField("Useful tips", $"React with {Emojis.Error} on a proxied message to delete it (only if you sent it!)\nReact with {Emojis.RedQuestion} on a proxied message to look up information about it (like who sent it)\nReact with {Emojis.Bell} on a proxied message to \"ping\" the sender\nType **`pk;invite`** to get a link to invite this bot to your own server!") .AddField("More information", "For a full list of commands, see [the command list](https://pluralkit.me/commands).\nFor a more in-depth explanation of message proxying, see [the documentation](https://pluralkit.me/guide#proxying).\nIf you're an existing user of Tupperbox, type `pk;import` and attach a Tupperbox export file (from `tul!export`) to import your data from there.") .AddField("Support server", "We also have a Discord server for support, discussion, suggestions, announcements, etc: https://discord.gg/PczBt78") - .WithFooter("By @Ske#6201 | GitHub: https://github.com/xSke/PluralKit/ | Website: https://pluralkit.me/") + .WithFooter($"By @Ske#6201 | Myriad by @Layl#8888 | {AvatarCredit} | GitHub: https://github.com/xSke/PluralKit/ | Website: https://pluralkit.me/") .WithColor(DiscordUtils.Blue) .Build()); }