From ad941fcbb261edef46abc285a62e0a252dccb564 Mon Sep 17 00:00:00 2001 From: Brady Date: Mon, 22 Oct 2018 18:01:55 -0500 Subject: [PATCH] Clarify anti nudge --- src/api/java/baritone/api/utils/RotationUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/java/baritone/api/utils/RotationUtils.java b/src/api/java/baritone/api/utils/RotationUtils.java index bea16fc7..c7ff3057 100644 --- a/src/api/java/baritone/api/utils/RotationUtils.java +++ b/src/api/java/baritone/api/utils/RotationUtils.java @@ -177,6 +177,8 @@ public final class RotationUtils { * is by setting the desired pitch to the current pitch * setting the desired pitch to the current pitch + 0.0001 means that we do have a desired pitch, it's * just what it currently is + * + * or if you're a normal person literally all this does it ensure that we don't nudge the pitch to a normal level */ return Optional.of(new Rotation(entity.rotationYaw, entity.rotationPitch + 0.0001F)); }