From f2a339266241b4590dd49afe82eb0f85e313be15 Mon Sep 17 00:00:00 2001 From: Nidoskull <109077284+Nidoskull@users.noreply.github.com> Date: Sun, 16 Mar 2025 01:51:24 +0100 Subject: [PATCH] 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Services/ErrorMessageService.cs b/PluralKit.Bot/Services/ErrorMessageService.cs index 6dc0dc0d..1127c111 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(); @@ -140,4 +140,4 @@ public class ErrorMessageService lastErrorTime = now; return true; } -} \ No newline at end of file +}