From c0f51c16ba5df11a3beaa9c1278ddb47c56bc7d4 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 28 Feb 2023 00:26:52 -0500 Subject: [PATCH] actually fixed the elif statement --- galaxy/galaxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 0cf575d..bd80d07 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -23,9 +23,9 @@ class Galaxy(commands.Cog): ctx.send(contents="``lvlfrom`` cannot be the same as ``lvlto``.") elif lvlfrom > lvlto: ctx.send(contents="``lvlfrom`` cannot be a higher value than ``to``.") - elif lvlfrom < 0 or lvlfrom > 37: + elif lvlfrom < 1 or lvlfrom > 37: ctx.send(contents="``lvlfrom`` must be higher than 0 and lower than 38") - elif lvlto > 1 or lvlto < 38: + elif lvlto < 1 or lvlto > 38: ctx.send(contents="``lvlto`` must be higher than 1 and lower than 39") else: ctx.send(embed=embed)