mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-12-28 07:20:28 +01:00
Fix camel jump cooldown (#5161)
This commit is contained in:
parent
abf68604be
commit
2ebce9c5c9
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ public final class BedrockPlayerAuthInputTranslator extends PacketTranslator<Pla
|
|||
}
|
||||
}
|
||||
|
||||
if (vehicle instanceof AbstractHorseEntity) {
|
||||
if (vehicle instanceof AbstractHorseEntity && !vehicle.getFlag(EntityFlag.HAS_DASH_COOLDOWN)) {
|
||||
// Behavior verified as of Java Edition 1.21.3
|
||||
int currentJumpingTicks = session.getInputCache().getJumpingTicks();
|
||||
if (currentJumpingTicks < 0) {
|
||||
|
|
Loading…
Reference in a new issue