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 41bbb585..0e5e5d5f 100644 --- a/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java +++ b/src/main/java/com/minelittlepony/unicopia/entity/player/PlayerPhysics.java @@ -36,6 +36,7 @@ import net.minecraft.particle.ParticleTypes; import net.minecraft.predicate.entity.EntityPredicates; import net.minecraft.sound.SoundCategory; import net.minecraft.sound.SoundEvents; +import net.minecraft.text.Text; import net.minecraft.util.math.*; import net.minecraft.world.event.GameEvent; @@ -289,6 +290,11 @@ public class PlayerPhysics extends EntityPhysics implements Tickab } else { strafe *= 0.28; } + + if (((LivingEntityDuck)entity).isJumping()) { + velocity.y -= 0.2F * getGravitySignum(); + velocity.y /= 2F; + } } else { prevStrafe = 0; strafe = 0;