Skip to content

Commit 2ebce9c

Browse files
authored
Fix camel jump cooldown (#5161)
1 parent abf6860 commit 2ebce9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/geysermc/geyser/translator/protocol/bedrock/entity/player/input/BedrockPlayerAuthInputTranslator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ private static void processVehicleInput(GeyserSession session, PlayerAuthInputPa
250250
}
251251
}
252252

253-
if (vehicle instanceof AbstractHorseEntity) {
253+
if (vehicle instanceof AbstractHorseEntity && !vehicle.getFlag(EntityFlag.HAS_DASH_COOLDOWN)) {
254254
// Behavior verified as of Java Edition 1.21.3
255255
int currentJumpingTicks = session.getInputCache().getJumpingTicks();
256256
if (currentJumpingTicks < 0) {

0 commit comments

Comments
 (0)