Browse Source
Add forum post rename system message
pull/8225/head
Lilly Rose Berner
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
discord/message.py
|
@ -1850,7 +1850,10 @@ class Message(PartialMessage, Hashable): |
|
|
return f'{self.author.name} removed {self.mentions[0].name} from the thread.' |
|
|
return f'{self.author.name} removed {self.mentions[0].name} from the thread.' |
|
|
|
|
|
|
|
|
if self.type is MessageType.channel_name_change: |
|
|
if self.type is MessageType.channel_name_change: |
|
|
return f'{self.author.name} changed the channel name: **{self.content}**' |
|
|
if getattr(self.channel, 'parent', self.channel).type is ChannelType.forum: |
|
|
|
|
|
return f'{self.author.name} changed the post title: **{self.content}**' |
|
|
|
|
|
else: |
|
|
|
|
|
return f'{self.author.name} changed the channel name: **{self.content}**' |
|
|
|
|
|
|
|
|
if self.type is MessageType.channel_icon_change: |
|
|
if self.type is MessageType.channel_icon_change: |
|
|
return f'{self.author.name} changed the channel icon.' |
|
|
return f'{self.author.name} changed the channel icon.' |
|
|