From ab81a094a6bff44225625261bfe7b528637c4c14 Mon Sep 17 00:00:00 2001 From: RedGuy12 <61329810+RedGuy12@users.noreply.github.com> Date: Fri, 19 May 2023 19:35:56 -0500 Subject: [PATCH] Fix system message for channel_icon_change --- discord/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/message.py b/discord/message.py index 326098866..33888d589 100644 --- a/discord/message.py +++ b/discord/message.py @@ -2023,7 +2023,7 @@ class Message(PartialMessage, Hashable): return f'{self.author.name} changed the channel name: **{self.content}**' if self.type is MessageType.channel_icon_change: - return f'{self.author.name} changed the channel icon.' + return f'{self.author.name} changed the group icon.' if self.type is MessageType.pins_add: return f'{self.author.name} pinned a message to this channel.'