Fixed holding space causing the player to drift upwards whilst flying

This commit is contained in:
Sollace 2023-06-03 14:17:36 +01:00
parent cab6ef2375
commit fff5d10f55

View file

@ -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<PlayerEntity> implements Tickab
} else {
strafe *= 0.28;
}
if (((LivingEntityDuck)entity).isJumping()) {
velocity.y -= 0.2F * getGravitySignum();
velocity.y /= 2F;
}
} else {
prevStrafe = 0;
strafe = 0;