diff --git a/PluralKit.Bot/Utils.cs b/PluralKit.Bot/Utils.cs index ce121810..637fddf3 100644 --- a/PluralKit.Bot/Utils.cs +++ b/PluralKit.Bot/Utils.cs @@ -160,7 +160,7 @@ namespace PluralKit.Bot // do a standard by-hid search. var foundByHid = await members.GetByHid(input); if (foundByHid != null) return TypeReaderResult.FromSuccess(foundByHid); - return TypeReaderResult.FromError(CommandError.ObjectNotFound, $"Member '{input}' not found."); + return TypeReaderResult.FromError(CommandError.ObjectNotFound, $"Member with ID `{input}` not found."); } }