Skip to content

Commit

Permalink
Merge pull request #1701 from ManInMyVan/fix/bed-bounce-version
Browse files Browse the repository at this point in the history
fix bed bouncy version
  • Loading branch information
SamB440 authored Sep 6, 2024
2 parents e8c7b90 + cef044c commit aa6d07f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ private void check(PositionUpdate update) {
}
player.uncertaintyHandler.isSteppingOnHoney = true;
}
if (BlockTags.BEDS.contains(data.getType()) && player.getClientVersion().isNewerThanOrEquals(ClientVersion.V_1_8)) {
if (BlockTags.BEDS.contains(data.getType()) && player.getClientVersion().isNewerThanOrEquals(ClientVersion.V_1_12)) {
player.uncertaintyHandler.isSteppingOnBouncyBlock = true;
}
if (BlockTags.ICE.contains(data.getType())) {
Expand Down

0 comments on commit aa6d07f

Please sign in to comment.