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 7b9e7c0 commit fd8e56bCopy full SHA for fd8e56b
src/main/kotlin/com/lambda/interaction/construction/context/BreakContext.kt
@@ -84,7 +84,7 @@ data class BreakContext(
84
private fun Vec3d.distance(vec: Vec3d, block: Block): Double {
85
val d = vec.x - x
86
val e = (vec.y - y).let {
87
- if (block is FallingBlock) it - (interactionConfig.attackReach / 2)
+ if (block is FallingBlock) it - (buildConfig.attackReach / 2)
88
else it
89
}
90
val f = vec.z - z
0 commit comments