diff --git a/discord/http.py b/discord/http.py index 3fed678a2..9f840779a 100644 --- a/discord/http.py +++ b/discord/http.py @@ -224,7 +224,9 @@ def handle_message_parameters( try: payload['allowed_mentions']['replied_user'] = mention_author except KeyError: - pass + payload['allowed_mentions'] = { + 'replied_user': mention_author, + } if attachments is MISSING: attachments = files # type: ignore