From 9adc061a39452f336645e0adc0129dbcc57029ad Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 28 Feb 2023 00:25:07 -0500 Subject: [PATCH] fixed an elif statement --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index b19aafa..0cf575d 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -25,7 +25,7 @@ class Galaxy(commands.Cog): ctx.send(contents="``lvlfrom`` cannot be a higher value than ``to``.") elif lvlfrom < 0 or lvlfrom > 37: ctx.send(contents="``lvlfrom`` must be higher than 0 and lower than 38") - elif lvlto > 1 or lvlto < 37: + elif lvlto > 1 or lvlto < 38: ctx.send(contents="``lvlto`` must be higher than 1 and lower than 39") else: ctx.send(embed=embed)