From 95887134247861a4c39a989394c55bca22e86137 Mon Sep 17 00:00:00 2001 From: 13xforever Date: Tue, 23 Oct 2018 00:33:18 +0500 Subject: [PATCH] mention that you can still see the full warning list in bot dms --- CompatBot/Commands/Warnings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompatBot/Commands/Warnings.cs b/CompatBot/Commands/Warnings.cs index 440f4c25..472225a7 100644 --- a/CompatBot/Commands/Warnings.cs +++ b/CompatBot/Commands/Warnings.cs @@ -160,7 +160,7 @@ namespace CompatBot.Commands var showCount = Math.Min(maxWarningsInPublicChannel, totalWarningCount); var result = new StringBuilder("Warning list for ").Append(userName); if (!isPrivate && !isWhitelisted && totalWarningCount > maxWarningsInPublicChannel) - result.Append($" (last {showCount} of {totalWarningCount})"); + result.Append($" (last {showCount} of {totalWarningCount}, full list in DMs)"); result.AppendLine(":").AppendLine("```"); var header = $"{"ID",-5} | {"Issued by",-15} | {"On date (UTC)",-20} | Reason"; if (isPrivate)