fix(moderation): hopefully actually fixed duration checker
All checks were successful
Pylint / Pylint (push) Successful in 1m12s

This commit is contained in:
Seaswimmer 2023-10-04 21:44:47 -04:00
parent 9db783ddc2
commit ce18cf1348
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -202,7 +202,7 @@ class Moderation(commands.Cog):
except ValueError: except ValueError:
await ctx.send(f"Please provide a valid duration!\nSee `{ctx.prefix}tdc`") await ctx.send(f"Please provide a valid duration!\nSee `{ctx.prefix}tdc`")
return return
if parsed_time.microseconds > 2.419e+12: if parsed_time.total_seconds() > 2.419e+6:
await ctx.send("Please provide a duration that is less than 28 days.") await ctx.send("Please provide a duration that is less than 28 days.")
return return
await target.timeout(parsed_time) await target.timeout(parsed_time)