diff options
author | 2020-05-11 00:10:55 +0200 | |
---|---|---|
committer | 2020-05-11 00:10:55 +0200 | |
commit | e2bf4425999fa70954762245c0a84a0d31f08473 (patch) | |
tree | 748e9d22e512182d7a56044f20a824b569dcf815 | |
parent | Merge pull request #923 from python-discord/feat/util/remove-mention-cmd (diff) | |
parent | Add remindme alias for the remind command (diff) |
Merge pull request #938 from Suhail6inkling/remind_alias
Add remindme alias for the remind command
-rw-r--r-- | bot/cogs/reminders.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 24c279357..8b6457cbb 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -158,7 +158,7 @@ class Reminders(Scheduler, Cog): ) await self._delete_reminder(reminder["id"]) - @group(name="remind", aliases=("reminder", "reminders"), invoke_without_command=True) + @group(name="remind", aliases=("reminder", "reminders", "remindme"), invoke_without_command=True) async def remind_group(self, ctx: Context, expiration: Duration, *, content: str) -> None: """Commands for managing your reminders.""" await ctx.invoke(self.new_reminder, expiration=expiration, content=content) |