Remove DEADMAN_TOURNAMENT world type

Co-authored-by: Hydrox6 <ikada@protonmail.ch>
This commit is contained in:
Adam
2019-11-15 09:19:25 -05:00
parent 71d2e74732
commit bcf89dce92
10 changed files with 7 additions and 30 deletions

View File

@@ -34,8 +34,7 @@ public enum HiscoreEndpoint
IRONMAN("Ironman", "https://services.runescape.com/m=hiscore_oldschool_ironman/index_lite.ws"),
HARDCORE_IRONMAN("Hardcore Ironman", "https://services.runescape.com/m=hiscore_oldschool_hardcore_ironman/index_lite.ws"),
ULTIMATE_IRONMAN("Ultimate Ironman", "https://services.runescape.com/m=hiscore_oldschool_ultimate/index_lite.ws"),
DEADMAN("Deadman", "https://services.runescape.com/m=hiscore_oldschool_deadman/index_lite.ws"),
DEADMAN_TOURNAMENT("Deadman Tournament", "https://services.runescape.com/m=hiscore_oldschool_tournament/index_lite.ws");
DEADMAN("Deadman", "https://services.runescape.com/m=hiscore_oldschool_deadman/index_lite.ws");
private final String name;
private final HttpUrl hiscoreURL;

View File

@@ -33,6 +33,5 @@ public enum WorldType
HIGH_RISK,
LAST_MAN_STANDING,
TOURNAMENT,
DEADMAN,
DEADMAN_TOURNAMENT
DEADMAN;
}