From 4e560783619b8d94d0d905d933d017b7ea4dac77 Mon Sep 17 00:00:00 2001 From: Dan Hess Date: Wed, 1 Jul 2020 11:11:17 -0500 Subject: [PATCH] Backwards if --- cogs/raffle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/raffle.py b/cogs/raffle.py index aa068f4..55612f9 100644 --- a/cogs/raffle.py +++ b/cogs/raffle.py @@ -118,7 +118,7 @@ class Raffle(commands.Cog): elif "day" in term: num = num * 24 * 60 * 60 - if 60 < num < 259200: + if not 60 < num < 259200: await ctx.send( "Length provided out of range! The minimum for this is 10 minutes, and the maximum is 3 days") return