diff options
author | 2021-05-15 23:32:22 +0100 | |
---|---|---|
committer | 2021-05-15 23:32:22 +0100 | |
commit | 8c8df556a982d06218465f98ec9ea9ccca01d6b0 (patch) | |
tree | 7d327922f907d7ae00114f8e1431a8a57b1cff37 | |
parent | feat: allow replying to messages to bookmark (diff) |
chore: add 'valid' wording
-rw-r--r-- | bot/exts/evergreen/bookmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/bookmark.py b/bot/exts/evergreen/bookmark.py index 1d172a45..1f65f07c 100644 --- a/bot/exts/evergreen/bookmark.py +++ b/bot/exts/evergreen/bookmark.py @@ -96,7 +96,7 @@ class Bookmark(commands.Cog): """Send the author a link to `target_message` via DMs.""" if not target_message: if not ctx.message.reference: - raise commands.UserInputError("You must either provide a message to bookmark, or reply to one.") + raise commands.UserInputError("You must either provide a valid message to bookmark, or reply to one.") target_message = await ctx.channel.fetch_message(ctx.message.reference.message_id) # Prevent users from bookmarking a message in a channel they don't have access to |