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.
This commit is contained in:
cyantheum
2020-06-06 02:02:45 -05:00
committed by GitHub
parent cc2ed2311b
commit dfce3bd7fc

View File

@@ -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;