Skip to content

Commit

Permalink
rules.py: Add wii assistance members to rules
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenChen committed Nov 20, 2023
1 parent 2239d45 commit 49504c6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cogs/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,12 @@ async def updaterules(self, ctx: KurisuContext):
helpers_wiiu = [f"<@{helper}>" for helper, console in helpers.items() if console == 'WiiU']
helpers_legacy = [f"<@{helper}>" for helper, console in helpers.items() if console == 'Legacy']
helpers_switch = [f"<@{helper}>" for helper, console in helpers.items() if console == 'Switch']
helpers_wii = [m.mention for m in ctx.guild.members if self.bot.roles['Wii-Assistance'] in m.roles]
await channel.send(self.helper_list)
await channel.send(f"{str(self.logo_3ds)} Nintendo 3DS\n" + '\n'.join(helpers_3ds))
await channel.send(f"{str(self.logo_wiiu)} Wii U\n" + '\n'.join(helpers_wiiu))
await channel.send(f"{str(self.logo_switch)} Nintendo Switch\n" + '\n'.join(helpers_switch))
await channel.send("Nintendo Wii\n" + '\n'.join(helpers_wii))
await channel.send("Legacy\n" + '\n'.join(helpers_legacy))
await channel.send(self.nickname_policy)
await channel.send(self.useful_commands)
Expand Down

0 comments on commit 49504c6

Please sign in to comment.