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 69d3616 commit fa9a42cCopy full SHA for fa9a42c
common/src/main/kotlin/com/lambda/interaction/request/breaking/BreakManager.kt
@@ -353,7 +353,7 @@ object BreakManager : RequestHandler<BreakRequest>(
353
* @return if the break context can be accepted.
354
*/
355
private fun SafeContext.canAccept(ctx: BreakContext, breakConfig: BreakConfig): Boolean {
356
- if (isPosBlocked(ctx.blockPos)) return false
+ if (breakInfos.none { it?.context?.blockPos == ctx.blockPos } && isPosBlocked(ctx.blockPos)) return false
357
358
if (breakConfig.doubleBreak) {
359
breakInfos
0 commit comments