Change "channel not found" error messages to be more ambiguous; also, put them in Errors instead of inline

This commit is contained in:
acw0
2020-08-01 14:31:46 -04:00
committed by Astrid
parent 4006d353f2
commit d9c644ec0e
2 changed files with 12 additions and 7 deletions

View File

@@ -114,5 +114,6 @@ namespace PluralKit.Bot {
public static PKError AttachmentTooLarge => new PKError("PluralKit cannot proxy attachments over 8 megabytes (as webhooks aren't considered as having Discord Nitro) :(");
public static PKError LookupNotAllowed => new PKError("You do not have permission to access this information.");
public static PKError ChannelNotFound(string channelString) => new PKError($"Channel \"{channelString}\" not found or is not in this server.");
}
}