From 2a5ef35794e934306cfbd7a56bb7204d0d2b86a3 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Fri, 3 May 2019 11:44:37 -0700 Subject: [PATCH] move this down to the other render settings --- src/api/java/baritone/api/Settings.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/api/java/baritone/api/Settings.java b/src/api/java/baritone/api/Settings.java index 7a63fef73..76ea0e9a2 100644 --- a/src/api/java/baritone/api/Settings.java +++ b/src/api/java/baritone/api/Settings.java @@ -81,11 +81,6 @@ public final class Settings { */ public final Setting jumpPenalty = new Setting<>(2D); - /** - * The size of the box that is rendered when the current goal is a GoalYLevel - */ - public final Setting yLevelBoxSize = new Setting<>(15D); - /** * Walking on water uses up hunger really quick, so penalize it */ @@ -804,6 +799,11 @@ public final class Settings { */ public final Setting> logger = new Setting<>(Minecraft.getMinecraft().ingameGUI.getChatGUI()::printChatMessage); + /** + * The size of the box that is rendered when the current goal is a GoalYLevel + */ + public final Setting yLevelBoxSize = new Setting<>(15D); + /** * The color of the current path */