fixed an elif statement
This commit is contained in:
parent
778ad13252
commit
9adc061a39
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue