From 26a2945696d83227ebbc429ee1900a435eb21482 Mon Sep 17 00:00:00 2001 From: Brady Date: Wed, 14 Jun 2023 19:13:07 -0500 Subject: [PATCH] remove comment --- src/main/java/baritone/utils/PathRenderer.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/main/java/baritone/utils/PathRenderer.java b/src/main/java/baritone/utils/PathRenderer.java index 65bf6269c..b3abc8cd2 100644 --- a/src/main/java/baritone/utils/PathRenderer.java +++ b/src/main/java/baritone/utils/PathRenderer.java @@ -71,19 +71,6 @@ public static void render(RenderEvent event, PathingBehavior behavior) { return; } - // TODO: This is goofy 💀 (pr/deprecateHelperMc) - // renderView isn't even needed for drawGoal since it's only used to - // calculate GoalYLevel x/z bounds, and ends up just cancelling itself - // out because of viewerPosX/Y/Z. I just changed it to center around the - // actual player so the goal box doesn't follow the camera in freecam. -// Entity renderView = Helper.mc.getRenderViewEntity(); -// if (renderView.world != BaritoneAPI.getProvider().getPrimaryBaritone().getPlayerContext().world()) { -// System.out.println("I have no idea what's going on"); -// System.out.println("The primary baritone is in a different world than the render view entity"); -// System.out.println("Not rendering the path"); -// return; -// } - if (goal != null && settings.renderGoal.value) { drawGoal(ctx.player(), goal, partialTicks, settings.colorGoalBox.value); }