We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3166c0c commit 43f85c4Copy full SHA for 43f85c4
common/src/main/kotlin/com/lambda/interaction/request/breaking/BreakManager.kt
@@ -228,7 +228,7 @@ object BreakManager : RequestHandler<BreakRequest>(
228
if (info.updatedProgressThisTick) return@forEach
229
val minKeepTicks = if (info.isSecondary) {
230
val breakDelta = info.context.checkedState.calcBlockBreakingDelta(player, world, info.context.expectedPos)
231
- val breakAmount = breakDelta * info.breakingTicks
+ val breakAmount = breakDelta * (info.breakingTicks + 1)
232
if (breakAmount >= 1.0f) 1 else 0
233
} else 0
234
if (!info.context.requestDependencies(info.request, minKeepTicks)) return@run
0 commit comments