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 d3f2642 commit 112535fCopy full SHA for 112535f
src/main/kotlin/com/lambda/interaction/construction/simulation/checks/PlaceSim.kt
@@ -91,12 +91,10 @@ class PlaceSim private constructor(simInfo: ISimInfo)
91
private suspend fun AutomatedSafeContext.simPlacements() =
92
supervisorScope {
93
preProcessing.sides.forEach { side ->
94
- launch {
95
- val neighborPos = pos.offset(side)
96
- val neighborSide = side.opposite
97
- testBlock(neighborPos, neighborSide, this@supervisorScope)
98
- testBlock(pos, side, this@supervisorScope)
99
- }
+ val neighborPos = pos.offset(side)
+ val neighborSide = side.opposite
+ launch { testBlock(neighborPos, neighborSide, this@supervisorScope) }
+ launch { testBlock(pos, side, this@supervisorScope) }
100
}
101
102
0 commit comments