From b2edae1766d7cddef6a984c64c4942c49df78936 Mon Sep 17 00:00:00 2001 From: Sollace Date: Thu, 4 Apr 2019 13:00:42 +0200 Subject: [PATCH] Adjusted ascent speed --- .../unicopia/player/PlayerGravityDelegate.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/minelittlepony/unicopia/player/PlayerGravityDelegate.java b/src/main/java/com/minelittlepony/unicopia/player/PlayerGravityDelegate.java index 8a4a1cdf..a721ea10 100644 --- a/src/main/java/com/minelittlepony/unicopia/player/PlayerGravityDelegate.java +++ b/src/main/java/com/minelittlepony/unicopia/player/PlayerGravityDelegate.java @@ -128,8 +128,6 @@ class PlayerGravityDelegate implements IUpdatable, IGravity, InbtSerialisable, I EntityPlayer entity = player.getOwner(); - System.out.println(isExperienceCritical() && player.isRemote()); - if (isExperienceCritical() && player.isRemote()) { Random rnd = player.getWorld().rand; @@ -281,10 +279,10 @@ class PlayerGravityDelegate implements IUpdatable, IGravity, InbtSerialisable, I // vertical drop due to gravity if (sneak) { - player.motionY -= (0.05F - getHorizontalMotion(player) / 100) * factor; + player.motionY -= (0.005F - getHorizontalMotion(player) / 100) * factor; } else { forward += 0.005F; - player.motionY -= 0.0005F * factor; + player.motionY -= 0.0001F * factor; } player.motionX += - forward * MathHelper.sin(player.rotationYaw * 0.017453292F);