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 38a5fc0 commit 67c6f26Copy full SHA for 67c6f26
common/src/main/kotlin/com/lambda/interaction/construction/context/PlaceContext.kt
@@ -79,6 +79,8 @@ data class PlaceContext(
79
fun requestDependencies(request: PlaceRequest): Boolean {
80
val hotbarRequest = request.hotbar.request(HotbarRequest(hotbarIndex, request.hotbar))
81
val validRotation = if (request.build.placing.rotate) {
82
+ //ToDo: add a rotation compare to the !previousDirWasInvalid check in case the player
83
+ // was able to perform actions after updating the server rotation in the same tick
84
request.rotation.request(rotation).done && !previousDirWasInvalid
85
} else true
86
return hotbarRequest.done && validRotation
0 commit comments