Skip to content

Commit

Permalink
Fix box on coordinates module
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatMG393 committed Mar 2, 2024
1 parent 0d0158c commit fbb68ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ public void render(DrawContext context, float tickDelta, CallbackInfo info) {

if (config.COORDS.visible) {
String text = "X: " + (int) client.player.getX()
+ "\nY: " + (int) client.player.getY()
+ "\nZ: " + (int) client.player.getZ();
+ " Y: " + (int) client.player.getY()
+ " Z: " + (int) client.player.getZ();

int[] boxPos = DrawUtils.getProperOffsets(client, config.COORDS.offsetX, config.COORDS.offsetY, text);

Expand Down

0 comments on commit fbb68ba

Please sign in to comment.