From c88ccea0b2205b0338d5569adf2e38e50fd6989f Mon Sep 17 00:00:00 2001 From: Ske Date: Thu, 2 Jul 2020 19:11:46 +0200 Subject: [PATCH] Remove June avatar (it's July now) --- PluralKit.Bot/Commands/Help.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/Help.cs b/PluralKit.Bot/Commands/Help.cs index 9925c2cb..20b41c85 100644 --- a/PluralKit.Bot/Commands/Help.cs +++ b/PluralKit.Bot/Commands/Help.cs @@ -8,7 +8,6 @@ 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() @@ -20,7 +19,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 | Myriad by @Layl#8888 | {AvatarCredit} | GitHub: https://github.com/xSke/PluralKit/ | Website: https://pluralkit.me/") + .WithFooter($"By @Ske#6201 | Myriad by @Layl#8888 | GitHub: https://github.com/xSke/PluralKit/ | Website: https://pluralkit.me/") .WithColor(DiscordUtils.Blue) .Build()); }