Reset flying with elytra when the player is on the ground

This commit is contained in:
R0bbyYT 2021-05-14 19:00:07 +02:00
parent 34d428be10
commit 2145bf4115
1 changed files with 3 additions and 0 deletions

View File

@ -2223,6 +2223,9 @@ public class Player extends LivingEntity implements CommandSender, Localizable,
public void refreshOnGround(boolean onGround) {
this.onGround = onGround;
if(this.onGround && this.isFlyingWithElytra()) {
this.setFlyingWithElytra(false);
}
}
/**