From e1fc8413236d300b336f3105c2b7f95104d32f21 Mon Sep 17 00:00:00 2001 From: Mary Date: Fri, 6 Aug 2021 19:39:11 +0200 Subject: [PATCH] bandel: Fix missing command marker This make the bandel command effectively work yay. --- robocop_ng/cogs/mod.py | 1 + 1 file changed, 1 insertion(+) diff --git a/robocop_ng/cogs/mod.py b/robocop_ng/cogs/mod.py index 57c9aa2..a4d3f9d 100644 --- a/robocop_ng/cogs/mod.py +++ b/robocop_ng/cogs/mod.py @@ -242,6 +242,7 @@ class Mod(Cog): @commands.guild_only() @commands.bot_has_permissions(ban_members=True) @commands.check(check_if_staff) + @commands.command() async def bandel( self, ctx, day_count: int, target: discord.Member, *, reason: str = "" ):