Merge pull request #4683 from deathbeam/add-tourney-world-type

Add Tournament world type
This commit is contained in:
Tomas Slusny
2018-08-05 12:06:29 +02:00
committed by GitHub
4 changed files with 10 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ import net.runelite.api.WorldType;
enum XpWorldType
{
NORMAL,
TOURNEY,
DMM,
SDMM;
@@ -36,6 +37,8 @@ enum XpWorldType
{
switch (type)
{
case TOURNAMENT:
return TOURNEY;
case DEADMAN:
return DMM;
case SEASONAL_DEADMAN: