diff --git a/cogs/rules.py b/cogs/rules.py index a07f23bfd..dfcd23120 100644 --- a/cogs/rules.py +++ b/cogs/rules.py @@ -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)