Skip to content

Commit

Permalink
Fix camel jump cooldown
Browse files Browse the repository at this point in the history
  • Loading branch information
AJ-Ferguson committed Nov 22, 2024
1 parent abf6860 commit 23f8f1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ private static void processVehicleInput(GeyserSession session, PlayerAuthInputPa
}
}

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) {
Expand Down

0 comments on commit 23f8f1e

Please sign in to comment.