Skip to content

Commit 956aa64

Browse files
committed
correct order for per-role rating chart
1 parent 969c2a1 commit 956aa64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

db/types.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,11 @@ def short_name(self):
195195

196196

197197
class Role(Enum):
198-
SCOUT = "scout"
199-
HEAVY = "heavy"
200198
COMMANDER = "commander"
201-
MEDIC = "medic"
199+
HEAVY = "heavy"
200+
SCOUT = "scout"
202201
AMMO = "ammo"
202+
MEDIC = "medic"
203203

204204

205205
class GameType(Enum):

0 commit comments

Comments
 (0)