From dfce3bd7fc85764e9fef086aec23dee59f7be189 Mon Sep 17 00:00:00 2001 From: cyantheum <66275413+cyantheum@users.noreply.github.com> Date: Sat, 6 Jun 2020 02:02:45 -0500 Subject: [PATCH] motherlode: Fix vein overlay not displaying on upper level (#11796) When standing on the tile south of Mercy, the player's height is -498, just barely under the previous defined height of the upper floor. --- .../runelite/client/plugins/motherlode/MotherlodePlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodePlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodePlugin.java index f67082de66..91725a3754 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodePlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/motherlode/MotherlodePlugin.java @@ -100,7 +100,7 @@ public class MotherlodePlugin extends Plugin private static final int SACK_LARGE_SIZE = 162; private static final int SACK_SIZE = 81; - private static final int UPPER_FLOOR_HEIGHT = -500; + private static final int UPPER_FLOOR_HEIGHT = -490; @Inject private OverlayManager overlayManager;