From 3c7601f570abf289166ce96030e7156671671d3e Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Thu, 19 Jul 2018 08:05:24 -0700 Subject: [PATCH] [V3 Dungeon] Fix for autosetup --- dungeon/dungeon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dungeon/dungeon.py b/dungeon/dungeon.py index 996de22..9fdb394 100644 --- a/dungeon/dungeon.py +++ b/dungeon/dungeon.py @@ -168,7 +168,7 @@ class Dungeon: await self.config.guild(ctx.guild).announce_channel.set(ctx.channel.id) toggle = await self.config.guild(ctx.guild).toggle() if not toggle: - await ctx.invoke(self.toggle) + await ctx.invoke(self.usertoggle) await ctx.send( f"Done.\nDungeon channel created: {dungeon_channel.mention}\nDungeon role created: {dungeon_role.name}\n\nPlease set these items manually:\n- The announce channel for reporting new users that are moved to the dungeon ([p]dungeon announce)\n- The role you wish to award regular members when they join the server ([p]dungeon userrole)\n- The toggle for enabling the regular user role awarding ([p]dungeon usertoggle)" )