From 19e3620ee8a053f3f7bef60b362f6e2077f29e3f Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 30 Jun 2020 17:13:26 +0100 Subject: [PATCH] Fixing some types with the name/aliases --- cogs/FunCommands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/FunCommands.py b/cogs/FunCommands.py index 1c329711..1481ba7a 100644 --- a/cogs/FunCommands.py +++ b/cogs/FunCommands.py @@ -143,7 +143,7 @@ class Fun(commands.Cog): print(e) # ~Lukas command that only Lukas can use - @command(name="Lukas", aliases=['Lukas']) + @command(name="lukas", aliases=['Lukas']) # Added a cooldown, only 1 instance of the command can be sent every second per user @cooldown(1, 1, BucketType.user) @has_any_role('Lukas (Server Booster)') @@ -179,7 +179,7 @@ class Fun(commands.Cog): await ctx.send(f"{ctx.author.mention} {random.choice(responses)}") # ~dm only allows me to dm anyone through the bot - @command(name="dm", aliases=["dm", "DM", "dM"]) + @command(name="dm", aliases=["DM", "dM"]) @is_owner() async def dm(self, ctx, member: Member, *, text): # Send the message typed the mentioned user