From 5c65321bfcee1f55e7e1207b9a551bb73dc3e375 Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 8 Jun 2024 20:45:31 +0200 Subject: Fix: Consider Y=64 part of Magma Fields (#2029) --- .../skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main/java') diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt index cde1e9ccb..950e93976 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsWalls.kt @@ -33,7 +33,9 @@ object CrystalHollowsWalls { private const val EXPAND_TIMES = 20 - private const val HEAT_HEIGHT = 64.0 + // Heat is active at Y=64.0 and below as of SkyBlock 0.20.1. We draw the line + // one above to accurately show whether the player is inside the Magma Fields. + private const val HEAT_HEIGHT = 65.0 private const val MAX_HEIGHT = 190.0 private const val MIN_X = 0.0 -- cgit