From 3af2f18d6ec8a54b7a950f6672e56e9ef43fc775 Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Sun, 13 Jan 2019 16:33:35 +0300 Subject: [PATCH] hackban: Fix softban alias --- cogs/mod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/mod.py b/cogs/mod.py index 9cfc400..0344ced 100644 --- a/cogs/mod.py +++ b/cogs/mod.py @@ -171,7 +171,7 @@ class Mod: @commands.guild_only() @commands.bot_has_permissions(ban_members=True) @commands.check(check_if_staff) - @commands.command(alias=["softban"]) + @commands.command(aliases=["softban"]) async def hackban(self, ctx, target: int, *, reason: str = ""): """Bans a user with their ID, doesn't message them, staff only.""" target_user = await self.bot.get_user_info(target)