From e525c2da63e3b9574f98463a0627c1a995a79794 Mon Sep 17 00:00:00 2001 From: spiral Date: Thu, 22 Sep 2022 19:17:43 +0000 Subject: [PATCH] feat(bot): tweak wording for short list flag error --- PluralKit.Bot/Commands/Lists/ListOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/Lists/ListOptions.cs b/PluralKit.Bot/Commands/Lists/ListOptions.cs index c3d3c23c..1835f17f 100644 --- a/PluralKit.Bot/Commands/Lists/ListOptions.cs +++ b/PluralKit.Bot/Commands/Lists/ListOptions.cs @@ -178,7 +178,7 @@ public static class ListOptionsExt public static void AssertIsValid(this ListOptions opts) { if (opts.Type == ListType.Short && opts.includedCount > 1) - throw new PKError("The short list does not support showing items from multiple flags. Try using the full list instead."); + throw new PKError("The short list does not support showing information from multiple flags. Try using the full list instead."); // the check for multiple *sorting* property flags is done in SortProperty setter }