reminder help

This commit is contained in:
Mylloon 2021-06-14 02:09:46 +02:00
parent 51c545535a
commit 63d16746f0

View file

@ -494,14 +494,17 @@ class Utils(commands.Cog):
mention = 0 mention = 0
if not reminder: if not reminder:
reminder = "Notification" reminder = "Notification"
if time.lower().endswith("@"): if time == "help":
time = time[:-1] seconds = 0
mention = 1 else:
seconds = stringTempsVersSecondes(time) if time.lower().endswith("@"):
if type(seconds) != int: time = time[:-1]
if fromSlash != True: mention = 1
await ctx.message.add_reaction(emoji = '') seconds = stringTempsVersSecondes(time)
return await ctx.send(seconds) if type(seconds) != int:
if fromSlash != True:
await ctx.message.add_reaction(emoji = '')
return await ctx.send(seconds)
if seconds == 0: if seconds == 0:
embed.add_field(name="Attention", value="Mauvais format pour le temps, `d` pour jour, `h` pour heure, `m` pour minute, `s` pour seconde\nMet un `@` accolée à l'unité pour mentionner les gens mentionner dans ton message.") embed.add_field(name="Attention", value="Mauvais format pour le temps, `d` pour jour, `h` pour heure, `m` pour minute, `s` pour seconde\nMet un `@` accolée à l'unité pour mentionner les gens mentionner dans ton message.")
elif seconds > 7776000: # 90 * 60 * 60 * 24 elif seconds > 7776000: # 90 * 60 * 60 * 24