diff options
Diffstat (limited to 'discord')
| -rw-r--r-- | discord/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index 1a575d47..ec6dcac6 100644 --- a/discord/message.py +++ b/discord/message.py @@ -1156,7 +1156,7 @@ class Message(Hashable): try: allowed_mentions = fields.pop('allowed_mentions') except KeyError: - if self._state.allowed_mentions is not None: + if self._state.allowed_mentions is not None and self.author.id == self._state.self_id: fields['allowed_mentions'] = self._state.allowed_mentions.to_dict() else: if allowed_mentions is not None: |