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 f492c5a commit d7a1715Copy full SHA for d7a1715
common/src/main/kotlin/com/lambda/interaction/request/breaking/BreakManager.kt
@@ -232,7 +232,7 @@ object BreakManager : RequestHandler<BreakRequest>(
232
val progress = (info.breakingTicks * breakDelta).let {
233
if (info.isPrimary) it * (2 - info.breakConfig.breakThreshold)
234
else it
235
- }.toDouble()
+ }.toDouble() * (1 - (breakDelta * config.fudgeFactor))
236
val state = info.context.cachedState
237
val boxes = state.getOutlineShape(world, info.context.blockPos).boundingBoxes.map {
238
it.offset(info.context.blockPos)
0 commit comments