From 7e976a742d0f0acf785139a9466a5376d2a4a948 Mon Sep 17 00:00:00 2001 From: owocado <24418520+owocado@users.noreply.github.com> Date: Fri, 11 Oct 2024 11:38:27 +0530 Subject: [PATCH] Fix Message.system_content for role_subscription_purchase renewal type --- discord/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/message.py b/discord/message.py index 6a00ec81d..efa34c8c0 100644 --- a/discord/message.py +++ b/discord/message.py @@ -2335,7 +2335,7 @@ class Message(PartialMessage, Hashable): if self.type is MessageType.role_subscription_purchase and self.role_subscription is not None: total_months = self.role_subscription.total_months_subscribed months = '1 month' if total_months == 1 else f'{total_months} months' - action = 'renewed' if self.role_subscription.is_renewal else 'subscribed' + action = 'renewed' if self.role_subscription.is_renewal else 'joined' return f'{self.author.name} {action} **{self.role_subscription.tier_name}** and has been a subscriber of {self.guild} for {months}!' if self.type is MessageType.stage_start: