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 df30395 commit 7cc13bfCopy full SHA for 7cc13bf
src/main/kotlin/com/lambda/interaction/request/breaking/SwapInfo.kt
@@ -66,7 +66,7 @@ data class SwapInfo(
66
val minKeepTicks = run {
67
if (type == Primary) {
68
val swapTickProgress = breakDelta * (breakTicks + breakConfig.serverSwapTicks - 1)
69
- if (swapTickProgress >= threshold) 1
+ if (swapTickProgress >= threshold && swapStack.heldTicks < breakConfig.serverSwapTicks) 1
70
else 0
71
} else {
72
val serverSwapTicks = breakConfig.serverSwapTicks.coerceAtLeast(3)
0 commit comments