From bf07294f5f612184f0c807da24f1441c0683aa16 Mon Sep 17 00:00:00 2001 From: acw0 Date: Sat, 25 Jul 2020 07:05:16 -0400 Subject: [PATCH] Change error to be more ambiguous --- PluralKit.Bot/Errors.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Errors.cs b/PluralKit.Bot/Errors.cs index 2b6c47ab..c2ab07ce 100644 --- a/PluralKit.Bot/Errors.cs +++ b/PluralKit.Bot/Errors.cs @@ -98,7 +98,7 @@ namespace PluralKit.Bot { public static PKError DurationParseError(string durationStr) => new PKError($"Could not parse '{durationStr}' as a valid duration. Try a format such as `30d`, `1d3h` or `20m30s`."); public static PKError FrontPercentTimeInFuture => new PKError("Cannot get the front percent between now and a time in the future."); - public static PKError GuildNotFound(ulong guildId) => new PKError($"Guild with ID {guildId} not found."); + public static PKError GuildNotFound(ulong guildId) => new PKError($"Guild with ID {guildId} not found. Note that you must be a member of the guild you are querying."); public static PKError DisplayNameTooLong(string displayName, int maxLength) => new PKError( $"Display name too long ({displayName.Length} > {maxLength} characters). Use a shorter display name, or shorten your system tag.");