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 f454c0d commit e846ff8Copy full SHA for e846ff8
1 file changed
src/main/kotlin/com/lambda/interaction/managers/breaking/BreakManager.kt
@@ -819,6 +819,7 @@ object BreakManager : Manager<BreakRequest>(
819
820
var packetCount = 1
821
if (breakConfig.breakMode == BreakMode.Packet) packetCount++
822
+ info.vanillaInstantBreakable = progress >= 1
823
val requiresSecondStop = info.type == Secondary || (instantBreakable && !info.vanillaInstantBreakable)
824
if (requiresSecondStop) packetCount++
825
@@ -833,7 +834,6 @@ object BreakManager : Manager<BreakRequest>(
833
834
}
835
836
if (instantBreakable) {
- info.vanillaInstantBreakable = progress >= 1
837
onBlockBreak(info)
838
val breakDelay = breakConfig.breakDelay
839
if (!info.vanillaInstantBreakable) breakCooldown = if (breakDelay == 0) 0 else breakDelay + 1
0 commit comments