Skip to content

Commit e1e8b67

Browse files
committed
More leniency for obsidian block breaking
1 parent 27cd53e commit e1e8b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/geysermc/geyser/session/cache/BlockBreakHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ protected boolean canDestroyBlock(BlockState state) {
515515

516516
protected boolean mayBreak(float progress, boolean bedrockDestroyed) {
517517
// We're tolerant here to account for e.g. obsidian breaking speeds not matching 1:1 :(
518-
return (serverSideBlockBreaking && progress >= 1.0F) || (bedrockDestroyed && progress >= 0.7F);
518+
return (serverSideBlockBreaking && progress >= 1.0F) || (bedrockDestroyed && progress >= 0.65F);
519519
}
520520

521521
protected void destroyBlock(BlockState state, Vector3i vector, Direction direction, boolean instamine) {

0 commit comments

Comments
 (0)