Browse Source

Return message content for replies in Message.system_content

pull/7030/head
Lilly Rose Berner 4 years ago
committed by GitHub
parent
commit
fb0c6c56e1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      discord/message.py

9
discord/message.py

@ -975,9 +975,9 @@ class Message(Hashable):
r""":class:`str`: A property that returns the content that is rendered r""":class:`str`: A property that returns the content that is rendered
regardless of the :attr:`Message.type`. regardless of the :attr:`Message.type`.
In the case of :attr:`MessageType.default`\, this just returns the In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\,
regular :attr:`Message.content`. Otherwise this returns an English this just returns the regular :attr:`Message.content`. Otherwise this
message denoting the contents of the system message. returns an English message denoting the contents of the system message.
""" """
if self.type is MessageType.default: if self.type is MessageType.default:
@ -1048,6 +1048,9 @@ class Message(Hashable):
if self.type is MessageType.guild_discovery_grace_period_final_warning: if self.type is MessageType.guild_discovery_grace_period_final_warning:
return 'This server has failed Discovery activity requirements for 3 weeks in a row. If this server fails for 1 more week, it will be removed from Discovery.' return 'This server has failed Discovery activity requirements for 3 weeks in a row. If this server fails for 1 more week, it will be removed from Discovery.'
if self.type is MessageType.reply:
return self.content
if self.type is MessageType.guild_invite_reminder: if self.type is MessageType.guild_invite_reminder:
return 'Wondering who to invite?\nStart by inviting anyone who can help you build the server!' return 'Wondering who to invite?\nStart by inviting anyone who can help you build the server!'

Loading…
Cancel
Save