From ade9328b889b66d8e0dc93e00766e63d40b43018 Mon Sep 17 00:00:00 2001 From: ChimneySwift <28179563+ChimneySwift@users.noreply.github.com> Date: Sun, 29 Nov 2020 19:40:51 +1000 Subject: [PATCH] Remove debug statements --- src/main/java/fhannenheim/autopilot/flight/FlightExecutor.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/fhannenheim/autopilot/flight/FlightExecutor.java b/src/main/java/fhannenheim/autopilot/flight/FlightExecutor.java index 2401996..c4775bb 100644 --- a/src/main/java/fhannenheim/autopilot/flight/FlightExecutor.java +++ b/src/main/java/fhannenheim/autopilot/flight/FlightExecutor.java @@ -64,11 +64,9 @@ public class FlightExecutor { this.currentVelocity = getVelocity(playerEntity); if (this.isDescending) { - Autopilot.LOGGER.warn("here3"); this.pullUp = false; this.pullDown = true; if (this.currentVelocity >= this.config.pullDownMaxVelocity) { - Autopilot.LOGGER.warn("here1"); this.isDescending = false; this.pullDown = false; this.pullUp = true;