Ah, right.

master
archfan 2019-04-15 12:29:52 -04:00 committed by GitHub
parent 03bcb22739
commit 61a280155c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ async def _class(ctx, number):
if player._can_change_class:
if number.isdigit() and int(number) =< len(rpg_utils.classes) and int(number) >= 1:
if number.isdigit() and int(number) <= len(rpg_utils.classes) and int(number) >= 1:
player._can_change_class = False