From 547ec466f97b261d9d1924a3ed58c95fbce1996e Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Sun, 26 Aug 2018 18:47:39 +0200 Subject: [PATCH] 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 --- .../client/plugins/worldhopper/WorldHopperPlugin.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/worldhopper/WorldHopperPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/worldhopper/WorldHopperPlugin.java index 2c6a852c3d..644e4b1064 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/worldhopper/WorldHopperPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/worldhopper/WorldHopperPlugin.java @@ -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 worlds = worldResult.getWorlds();