From 6a2cfc0a9f3a48098e1c37f24c716e2b15d1437e Mon Sep 17 00:00:00 2001 From: viciscat <51047087+viciscat@users.noreply.github.com> Date: Thu, 30 May 2024 21:08:15 +0200 Subject: Update MythologicalRitual.java try putting the waypoint's base lower --- .../de/hysky/skyblocker/skyblock/waypoint/MythologicalRitual.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/de/hysky/skyblocker/skyblock/waypoint/MythologicalRitual.java b/src/main/java/de/hysky/skyblocker/skyblock/waypoint/MythologicalRitual.java index 945aedfd..aeb3a55d 100644 --- a/src/main/java/de/hysky/skyblocker/skyblock/waypoint/MythologicalRitual.java +++ b/src/main/java/de/hysky/skyblocker/skyblock/waypoint/MythologicalRitual.java @@ -120,7 +120,7 @@ public class MythologicalRitual { new Vector2D(burrow.echoBurrowDirection[1].x, burrow.echoBurrowDirection[1].z), 0.0001); Vector2D intersection = line.intersection(burrow.nextLine); - burrow.estimatedPos = BlockPos.ofFloored(intersection.getX(), 100, intersection.getY()); + burrow.estimatedPos = BlockPos.ofFloored(intersection.getX(), 5, intersection.getY()); } fillLine(burrow.nextBurrowLine, Vec3d.ofCenter(pos.up()), nextBurrowDirection); } else if (ParticleTypes.DRIPPING_LAVA.equals(packet.getParameters().getType()) && packet.getCount() == 2) { @@ -145,7 +145,7 @@ public class MythologicalRitual { new Vector2D(previousBurrow.echoBurrowDirection[1].x, previousBurrow.echoBurrowDirection[1].z), 0.0001 )); - previousBurrow.estimatedPos = BlockPos.ofFloored(intersection.getX(), 100, intersection.getY()); + previousBurrow.estimatedPos = BlockPos.ofFloored(intersection.getX(), 5, intersection.getY()); } fillLine(previousBurrow.echoBurrowLine, previousBurrow.echoBurrowDirection[0], echoBurrowDirection); -- cgit