diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index 1f9a1234c..a2da86ae8 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -724,6 +724,10 @@ class _WebhookState: # state parameter is artificial return BaseUser(state=self, data=data) # type: ignore + @property + def allowed_mentions(self) -> Optional[AllowedMentions]: + return None + def get_reaction_emoji(self, data: PartialEmojiPayload) -> Union[PartialEmoji, Emoji, str]: if self._parent is not None: return self._parent.get_reaction_emoji(data)