From 5a74f860abe6fb904de30570f0a7cfff9ab5287d Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sun, 21 Jun 2020 21:43:18 +0100 Subject: [PATCH] Minor changes to do with aliases/commentary --- EnsoBot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EnsoBot.py b/EnsoBot.py index 00d2d488..700a0176 100644 --- a/EnsoBot.py +++ b/EnsoBot.py @@ -250,7 +250,7 @@ async def on_raw_reaction_remove(payload): async def marry(ctx, member: discord.Member): # Send a message to the channel mentioning the author and the person they want to wed. await ctx.send(f"{ctx.author.mention} **Proposes To** {member.mention} **Do you accept??** " - f"\nRespond with [yes/no]") + f"\nRespond with [Yes/No]") # A check that makes sure that the reply is not from the author # and that the reply is in the same channel as the proposal @@ -300,8 +300,8 @@ async def on_message(message): # ~remindme command to allow the bot to dm you to remind you of something -@client.command() -async def remindme(ctx, time=None, *, text): +@client.command(aliases=["remindme", "rm"]) +async def remind_me(ctx, time=None, *, text): # Grab the author and store it in "author" author = ctx.message.author