Browse Source

Add Thread.mention

pull/7154/head
Rapptz 4 years ago
parent
commit
69c400d813
  1. 5
      discord/threads.py

5
discord/threads.py

@ -206,6 +206,11 @@ class Thread(Messageable, Hashable):
"""Optional[:class:`Member`]: The member this thread belongs to."""
return self.guild.get_member(self.owner_id)
@property
def mention(self) -> str:
""":class:`str`: The string that allows you to mention the thread."""
return f'<#{self.id}>'
@property
def last_message(self) -> Optional[Message]:
"""Fetches the last message from this channel in cache.

Loading…
Cancel
Save