Skip to content

Commit

Permalink
Properly offset marker by y1.8 again
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Feb 16, 2024
1 parent 494fb0d commit b69908c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void add(Player player, BlueMapAPI api) {
if (position == null) return;

// Add 1.8 to y to place the marker at the head-position of the player, like BlueMap does with its player-markers
position.add(0, 1.8, 0);
position = position.add(0, 1.8, 0);

// Create marker-template
POIMarker.Builder markerBuilder = POIMarker.builder()
Expand Down

0 comments on commit b69908c

Please sign in to comment.