From e11fb8f071545cf589e567fc73cb3ad13c562e1b Mon Sep 17 00:00:00 2001 From: Interitio Date: Thu, 30 Jul 2026 14:42:21 +0300 Subject: [PATCH] fix(channel): Use correct channel name --- plugin/twitch/component.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin/twitch/component.py b/plugin/twitch/component.py index 16584dc..bfd83f3 100644 --- a/plugin/twitch/component.py +++ b/plugin/twitch/component.py @@ -24,7 +24,7 @@ class CampaignComponent(cmds.Component): self.campaigns = CampaignRegistry(self.data) self.channel = CampaignChannel(self.bot.profiles.profiles, self.campaigns) - register_channel("Campaign", self.channel) + register_channel(self.channel.name, self.channel) # ----- API ----- async def component_load(self): @@ -278,6 +278,7 @@ class CampaignComponent(cmds.Component): self, ctx: cmds.Context, user: twitchio.User, + *, reward_reason: str, ): """Manually reward a target user, adjusting their points."""