ajout help command for reminder
This commit is contained in:
parent
c82370ae49
commit
63b08d0007
1 changed files with 2 additions and 1 deletions
|
@ -383,8 +383,9 @@ class Utils(commands.Cog):
|
||||||
await message.add_reaction(emoji = i)
|
await message.add_reaction(emoji = i)
|
||||||
return await ctx.message.delete()
|
return await ctx.message.delete()
|
||||||
|
|
||||||
@commands.command(name='reminder', aliases=["remind", "remindme", "remind_me"])
|
@commands.command(name='reminder', aliases=["remind", "remindme"])
|
||||||
async def _reminder(self, ctx, time, *, reminder):
|
async def _reminder(self, ctx, time, *, reminder):
|
||||||
|
"""Met en place un rappel.\n ➡ Syntaxe: .reminder/remind/remindme <temps (d/h/m/s)> <message> """
|
||||||
embed = discord.Embed(color = 0xC41B1B)
|
embed = discord.Embed(color = 0xC41B1B)
|
||||||
seconds = 0
|
seconds = 0
|
||||||
if reminder:
|
if reminder:
|
||||||
|
|
Reference in a new issue