Skip to content

Commit fd8e56b

Browse files
committed
merge fix
1 parent 7b9e7c0 commit fd8e56b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/lambda/interaction/construction/context/BreakContext.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ data class BreakContext(
8484
private fun Vec3d.distance(vec: Vec3d, block: Block): Double {
8585
val d = vec.x - x
8686
val e = (vec.y - y).let {
87-
if (block is FallingBlock) it - (interactionConfig.attackReach / 2)
87+
if (block is FallingBlock) it - (buildConfig.attackReach / 2)
8888
else it
8989
}
9090
val f = vec.z - z

0 commit comments

Comments
 (0)