Skip to content

Commit

Permalink
Merge pull request #47 from Algoinde/patch-1
Browse files Browse the repository at this point in the history
Fix tiers for the enum
  • Loading branch information
mrwan200 committed Aug 14, 2023
2 parents 522bed4 + 0c1cc8e commit 0992f28
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions enkanetwork/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0992f28

Please sign in to comment.