Skip to content

Commit

Permalink
fixed missing chunk pos transform
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallen-Breath committed May 29, 2023
1 parent cfc6d1d commit 29df7b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void onChunkSectionAddOrRemovePlayer(Chunk chunk, EntityPlayer entity, in
Messenger.fancy(
Messenger.format("[%s, %s, %s]", chunk.x, y, chunk.z),
Messenger.s("Chunk section coordinate"),
new ClickEvent(ClickEvent.Action.SUGGEST_COMMAND, String.format("/tp %d %d %d", chunk.x * 16 + 8, y * 16 + 8, chunk.z))
new ClickEvent(ClickEvent.Action.SUGGEST_COMMAND, String.format("/tp %d %d %d", chunk.x * 16 + 8, y * 16 + 8, chunk.z * 16 + 8))
),
actionName
);
Expand Down

0 comments on commit 29df7b4

Please sign in to comment.