We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 377a42b commit 1449055Copy full SHA for 1449055
1 file changed
src/main/kotlin/com/lambda/module/modules/world/Printer.kt
@@ -86,6 +86,7 @@ object Printer : Module(
86
* @return true if the build result should be built, false if it should be ignored
87
*/
88
private fun SafeContext.filterBuildResults(buildResult: BuildResult): Boolean {
89
+ if (buildResult !is InteractResult && buildResult !is BreakResult) return true
90
return if (buildResult is InteractResult && !flattenModeApply.placing ||
91
buildResult is BreakResult && !flattenModeApply.breaking) true
92
else isInFlatten(buildResult.pos, flattenMode, sneakLowersFlatten, baritoneSelection, inverseSelection)
0 commit comments