fix(moderation): allow mutes that are exactly 28 days
All checks were successful
Pylint / Pylint (push) Successful in 1m13s
All checks were successful
Pylint / Pylint (push) Successful in 1m13s
This commit is contained in:
parent
ce18cf1348
commit
4e31ca651d
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ class Moderation(commands.Cog):
|
|||
except ValueError:
|
||||
await ctx.send(f"Please provide a valid duration!\nSee `{ctx.prefix}tdc`")
|
||||
return
|
||||
if parsed_time.total_seconds() > 2.419e+6:
|
||||
if parsed_time.total_seconds() >= 2.419e+6:
|
||||
await ctx.send("Please provide a duration that is less than 28 days.")
|
||||
return
|
||||
await target.timeout(parsed_time)
|
||||
|
|
Loading…
Reference in a new issue