mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 11:36:43 +01:00
Removed debug logging
This commit is contained in:
parent
629f30be0e
commit
dc6371ccf0
1 changed files with 0 additions and 2 deletions
|
@ -174,8 +174,6 @@ public class PlayerPhysics extends EntityPhysics<Pony> 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;
|
||||
|
|
Loading…
Reference in a new issue