diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-07 14:00:29 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-07 14:00:29 +0200 |
commit | f221b83d186f50f49ed079764b4f9d871aef2bd2 (patch) | |
tree | 7e766490362335c909f73af219bd8131895d06ea /src/main/java/at/hannibal2/skyhanni/features/mining | |
parent | e8b66407e990e07030b2ec6c67863c72ba80a3d4 (diff) | |
download | skyhanni-f221b83d186f50f49ed079764b4f9d871aef2bd2.tar.gz skyhanni-f221b83d186f50f49ed079764b4f9d871aef2bd2.tar.bz2 skyhanni-f221b83d186f50f49ed079764b4f9d871aef2bd2.zip |
Hide crystal hollows area names below the nucleus
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/mining')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsNamesInCore.kt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsNamesInCore.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsNamesInCore.kt index b8367b3d0..e127f80ed 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsNamesInCore.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/mining/crystalhollows/CrystalHollowsNamesInCore.kt @@ -3,7 +3,8 @@ package at.hannibal2.skyhanni.features.mining.crystalhollows import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.data.IslandType import at.hannibal2.skyhanni.events.LorenzTickEvent -import at.hannibal2.skyhanni.utils.LocationUtils.distanceToPlayerIgnoreYSq +import at.hannibal2.skyhanni.utils.LocationUtils +import at.hannibal2.skyhanni.utils.LocationUtils.distanceToPlayerSqIgnoreY import at.hannibal2.skyhanni.utils.LorenzUtils.isInIsland import at.hannibal2.skyhanni.utils.LorenzVec import at.hannibal2.skyhanni.utils.RenderUtils.drawDynamicText @@ -27,7 +28,7 @@ class CrystalHollowsNamesInCore { if (event.isMod(10)) { val center = LorenzVec(514.3, 106.0, 514.3) - showWaypoints = center.distanceToPlayerIgnoreYSq() < 1100 + showWaypoints = center.distanceToPlayerSqIgnoreY() < 1100 && LocationUtils.playerLocation().y > 65 } } |