aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2020-05-11 00:10:55 +0200
committerGravatar GitHub <[email protected]>2020-05-11 00:10:55 +0200
commite2bf4425999fa70954762245c0a84a0d31f08473 (patch)
tree748e9d22e512182d7a56044f20a824b569dcf815
parentMerge pull request #923 from python-discord/feat/util/remove-mention-cmd (diff)
parentAdd 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.py2
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)