Skip to content

Commit

Permalink
worlds: add legacy only/eoc only
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed May 19, 2024
1 parent d9e623f commit 4470431
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public enum WorldType
HIGH_RISK,
LAST_MAN_STANDING,
BETA_WORLD,
LEGACY_ONLY,
EOC_ONLY,
NOSAVE_MODE,
TOURNAMENT,
FRESH_START_WORLD,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ enum ServiceWorldType
HIGH_RISK(WorldType.HIGH_RISK, 1 << 10),
LAST_MAN_STANDING(WorldType.LAST_MAN_STANDING, 1 << 14),
BETA_WORLD(WorldType.BETA_WORLD, 1 << 16),
LEGACY_ONLY(WorldType.LEGACY_ONLY, 1 << 22),
EOC_ONLY(WorldType.EOC_ONLY, 1 << 23),
NOSAVE_MODE(WorldType.NOSAVE_MODE, 1 << 25),
TOURNAMENT(WorldType.TOURNAMENT, 1 << 26),
FRESH_START_WORLD(WorldType.FRESH_START_WORLD, 1 << 27),
Expand Down

0 comments on commit 4470431

Please sign in to comment.