Remove dupe PVP_HR entry in world hopper

This was preventing from the config.hopOutOfDanger to work properly when
disabled.

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-08-26 18:47:39 +02:00
parent f79d850bb1
commit 547ec466f9

View File

@@ -466,12 +466,9 @@ public class WorldHopperPlugin extends Plugin
currentWorldTypes.remove(WorldType.PVP);
currentWorldTypes.remove(WorldType.PVP_HIGH_RISK);
}
// Don't regard skill total and bounty worlds as a type that must be hopped between
// Don't regard these worlds as a type that must be hopped between
currentWorldTypes.remove(WorldType.BOUNTY);
currentWorldTypes.remove(WorldType.SKILL_TOTAL);
// Allow hopping from a high risk world to a non-high risk world
currentWorldTypes.remove(WorldType.PVP_HIGH_RISK);
// Allow hopping from a LMS world to a non-LMS world
currentWorldTypes.remove(WorldType.LAST_MAN_STANDING);
List<World> worlds = worldResult.getWorlds();