From dc6371ccf0c28b32c4d61766e6004c3e6bfcf2fd Mon Sep 17 00:00:00 2001 From: Sollace Date: Thu, 8 Oct 2020 09:49:39 +0200 Subject: [PATCH] Removed debug logging --- .../minelittlepony/unicopia/entity/player/PlayerPhysics.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java b/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java index af05db31..ce09b039 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java @@ -174,8 +174,6 @@ public class PlayerPhysics extends EntityPhysics implements Tickable, Moti double horMotion = getHorizontalMotion(entity); double motion = entity.getPos().subtract(lastPos).lengthSquared(); - System.out.println(motion + " " + horMotion + " " + velocity.y); - boolean takeOffCondition = velocity.y > 0 && (horMotion > 0.2 || (motion > 0.2 && velocity.y < -0.02)); boolean fallingTakeOffCondition = !entity.isOnGround() && velocity.y < -1.6;