Skip to content

Commit f9a8aa0

Browse files
committed
Remove logspam
1 parent 0c09441 commit f9a8aa0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/baritone/utils/GuiClick.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,11 @@ public void render(PoseStack stack, int mouseX, int mouseY, float partialTicks)
7373
Vec3 far = toWorld(mx, my, 1); // "Use 0.945 that's what stack overflow says" - leijurv
7474

7575
if (near != null && far != null) {
76-
///
7776
Vec3 viewerPos = new Vec3(PathRenderer.posX(), PathRenderer.posY(), PathRenderer.posZ());
7877
LocalPlayer player = BaritoneAPI.getProvider().getPrimaryBaritone().getPlayerContext().player();
7978
HitResult result = player.level.clip(new ClipContext(near.add(viewerPos), far.add(viewerPos), ClipContext.Block.OUTLINE, ClipContext.Fluid.NONE, player));
8079
if (result != null && result.getType() == HitResult.Type.BLOCK) {
8180
currentMouseOver = ((BlockHitResult) result).getBlockPos();
82-
System.out.println("currentMouseOver = " + currentMouseOver);
8381
}
8482
}
8583
}

0 commit comments

Comments
 (0)