Skip to content

Commit d282a24

Browse files
committed
Lowered distance required to advance to next node in path
1 parent e3c8014 commit d282a24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/meteordevelopment/voyager/VInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public void limitMovement(Vec3d vec) {
130130
}
131131

132132
double distance = getDistanceToNext(vec2);
133-
if (distance <= 0.01) {
133+
if (distance <= 0.25) {
134134
Path.Step prev = current;
135135

136136
if (!next()) stop = true;

0 commit comments

Comments
 (0)