Fix tiers for the enum

This commit is contained in:
Algoinde 2023-07-12 02:43:20 +05:00 committed by GitHub
parent c671d32beb
commit 0c1cc8e829
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,8 @@ class EquipType(str, Enum):
Circlet = "EQUIP_DRESS"
class ProfileRank(int, Enum):
TIER_1 = 0
TIER_2 = 1
TIER_3 = 2
TIER_LEGACY = -1
TIER_NONE = 0
TIER_1 = 1
TIER_2 = 2
TIER_3 = 3