Skip to content

Commit

Permalink
Merge pull request #1812 from Axionize/fix-pink-petal-hitbox-1.12.2-1…
Browse files Browse the repository at this point in the history
….19.3

Fix Pink Petals Hitbox (Coral Fan) for > 1.12.2 and =< 1.19.3 players
  • Loading branch information
SamB440 authored Nov 22, 2024
2 parents e5bd42c + 02c5021 commit 497d72e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ public enum HitboxData {
} else if (version.isNewerThan(ClientVersion.V_1_19_3)) {
return new HexCollisionBox(0.0D, 0.0D, 0.0D, 16.0D, 3.0D, 16.0D);
} else if (version.isNewerThan(ClientVersion.V_1_12_2)) {
return CORAL_FAN.dynamic.fetch(player, item, version, data, x, y, z);
return CORAL_FAN.box.copy();
}
return GRASS_FERN.dynamic.fetch(player, item, version, data, x, y, z);
}, StateTypes.PINK_PETALS),
Expand Down

0 comments on commit 497d72e

Please sign in to comment.