From c4db95796d526cecd5789a195c41fb1f720377b8 Mon Sep 17 00:00:00 2001 From: Nidoskull <109077284+Nidoskull@users.noreply.github.com> Date: Sun, 16 Mar 2025 11:28:42 +0000 Subject: [PATCH] feat(bot): add "as text" to the redirect to the error support channel Many users send a screenshot of the error embed rather than sending the error code as text. Perhaps this would help? --- PluralKit.Bot/Services/ErrorMessageService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Services/ErrorMessageService.cs b/PluralKit.Bot/Services/ErrorMessageService.cs index 6dc0dc0d..50f47d1c 100644 --- a/PluralKit.Bot/Services/ErrorMessageService.cs +++ b/PluralKit.Bot/Services/ErrorMessageService.cs @@ -116,7 +116,7 @@ public class ErrorMessageService return new EmbedBuilder() .Color(0xE74C3C) .Title("Internal error occurred") - .Description($"For support, please send the error code above in {channelInfo} with a description of what you were doing at the time.") + .Description($"For support, please send the error code above as text in {channelInfo} with a description of what you were doing at the time.") .Footer(new Embed.EmbedFooter(errorId)) .Timestamp(now.ToDateTimeOffset().ToString("O")) .Build();