Remove SEASONAL_DEADMAN world type

Co-authored-by: Hydrox6 <ikada@protonmail.ch>
This commit is contained in:
Adam
2019-11-15 09:13:11 -05:00
parent f837197823
commit 71d2e74732
11 changed files with 5 additions and 27 deletions

View File

@@ -67,11 +67,7 @@ public enum WorldType
/**
* Deadman world type.
*/
DEADMAN(1 << 29),
/**
* Seasonal deadman world type.
*/
SEASONAL_DEADMAN(1 << 30);
DEADMAN(1 << 29);
private final int mask;
@@ -83,8 +79,7 @@ public enum WorldType
private static final EnumSet<WorldType> PVP_WORLD_TYPES = EnumSet.of(
DEADMAN,
DEADMAN_TOURNAMENT,
PVP,
SEASONAL_DEADMAN
PVP
);
/**