remove old debugging code

This commit is contained in:
Dominika 2020-04-15 15:04:29 -04:00 committed by GitHub
parent dab3e65848
commit 6ee324f7be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -115,7 +115,6 @@ public class ElytraFlight extends Module {
packetYaw = yawDeg;
float yaw = (float) Math.toRadians(yawDeg);
/*float pitch = (float) Math.toRadians(ElytraFlight.mc.player.rotationPitch);*/
double motionAmount = Math.sqrt(mc.player.motionX * mc.player.motionX + mc.player.motionZ * mc.player.motionZ);
hoverState = hoverState ? mc.player.posY < hoverTarget + 0.1 : mc.player.posY < hoverTarget + 0.0;
doHover = hoverState && hoverControl.getValue();