WorldType: Fix HIGH_RISK world type name

This world type is not specifically a PVP world type; at the time of
this commit, world 365 is a non-PVP high-risk world, where the world is
the same as a regular members' world, except that the Protect Item
prayer is disabled.
This commit is contained in:
Jordan Atwood
2019-04-23 12:38:17 -07:00
parent 38e122f5fb
commit 5bebd34bbf
6 changed files with 8 additions and 8 deletions

View File

@@ -49,9 +49,9 @@ public enum WorldType
*/
SKILL_TOTAL(1 << 7),
/**
* Pvp high risk world type.
* High risk world type.
*/
PVP_HIGH_RISK(1 << 10),
HIGH_RISK(1 << 10),
/**
* Last man standing world type.
*/
@@ -84,7 +84,7 @@ public enum WorldType
DEADMAN,
DEADMAN_TOURNAMENT,
PVP,
PVP_HIGH_RISK,
HIGH_RISK,
SEASONAL_DEADMAN
);