Waypoint markers should be spawned at the actual location now

This commit is contained in:
fullwall 2022-02-07 19:03:21 +08:00
parent bef0f16f3b
commit c60085eade

View File

@ -209,7 +209,7 @@ public class LinearWaypointProvider implements EnumerableWaypointProvider {
private void createWaypointMarkers() {
for (int i = 0; i < waypoints.size(); i++) {
markers.createMarker(waypoints.get(i), waypoints.get(i).getLocation().clone().add(0, 1, 0));
markers.createMarker(waypoints.get(i), waypoints.get(i).getLocation());
}
}