xptracker: add league world type

Co-authored-by: Hydrox6 <ikada@protonmail.ch>
This commit is contained in:
Adam
2019-11-15 09:50:55 -05:00
parent db17dd213c
commit 39e40b655c

View File

@@ -30,7 +30,8 @@ enum XpWorldType
{ {
NORMAL, NORMAL,
TOURNEY, TOURNEY,
DMM; DMM,
LEAGUE;
static XpWorldType of(WorldType type) static XpWorldType of(WorldType type)
{ {
@@ -40,6 +41,8 @@ enum XpWorldType
return TOURNEY; return TOURNEY;
case DEADMAN: case DEADMAN:
return DMM; return DMM;
case LEAGUE:
return LEAGUE;
default: default:
return NORMAL; return NORMAL;
} }