aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorviciscat <51047087+viciscat@users.noreply.github.com>2024-05-30 21:08:15 +0200
committerviciscat <51047087+viciscat@users.noreply.github.com>2024-08-21 12:32:13 +0200
commit6a2cfc0a9f3a48098e1c37f24c716e2b15d1437e (patch)
treeeb53df0fbc30bb7f020235df712c035e0b7a69be /src/main/java
parent080fce7c83afdc65127e415a25d3517ea54b6fae (diff)
downloadSkyblocker-6a2cfc0a9f3a48098e1c37f24c716e2b15d1437e.tar.gz
Skyblocker-6a2cfc0a9f3a48098e1c37f24c716e2b15d1437e.tar.bz2
Skyblocker-6a2cfc0a9f3a48098e1c37f24c716e2b15d1437e.zip
Update MythologicalRitual.java
try putting the waypoint's base lower
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/de/hysky/skyblocker/skyblock/waypoint/MythologicalRitual.java4
1 files changed, 2 insertions, 2 deletions
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);