diff options
-rwxr-xr-x | cogs/admin.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cogs/admin.py b/cogs/admin.py index eff6de6..1a814d6 100755 --- a/cogs/admin.py +++ b/cogs/admin.py @@ -313,10 +313,10 @@ class Admin(commands.Cog): message += f'{player}, ' await ctx.send(f'{message[:-2]}```') - @commands.command() - @commands.check(is_botmaster) - async def give_role(self, ctx, role_id): - await ctx.author.add_roles(role_id) + @commands.command() + @commands.check(is_botmaster) + async def give_role(self, ctx, role_id): + await ctx.author.add_roles(role_id) def setup(bot): |