Skip to content

Commit 9da6bb4

Browse files
committed
moved paddle wakes forward
1 parent eac4783 commit 9da6bb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/java/com/goby56/wakes/utils/WakeNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ public static Set<WakeNode> rowingNodes(BoatEntity boat, float height) {
247247
double z = boat.getZ() + (i == 1 ? rot.x : -rot.x);
248248
Vec3d paddlePos = new Vec3d(x, height, z);
249249
Vec3d dir = Vec3d.fromPolar(0, boat.getYaw()).multiply(velocity);
250-
Vec3d from = paddlePos.subtract(dir);
251-
Vec3d to = paddlePos.add(dir);
250+
Vec3d from = paddlePos;
251+
Vec3d to = paddlePos.add(dir.multiply(2));
252252
nodesAffected.addAll(nodeTrail(from.x, from.z, to.x, to.z, height, WakesConfig.paddleStrength, velocity));
253253
}
254254
}

0 commit comments

Comments
 (0)