Skip to content

Commit

Permalink
Update Scaffold.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
C00LC0D35 authored Jan 16, 2024
1 parent 0352f6a commit 69e89c1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1285,14 +1285,14 @@ class Scaffold : Module() {
Rotation(caluyaw, placeRotation.rotation.pitch)
}
"static2" -> {
if ((MovementUtils.movingYaw / 30).roundToInt() % 2 == 1) {
if ((MovementUtils.movingYaw / 30).roundToInt() % 3 == 0) {
if (static2BoostValue.get()) {
mc.thePlayer.motionX *= 1.1
mc.thePlayer.motionZ *= 1.1
}
Rotation(((MovementUtils.direction * 180f / Math.PI).toFloat() + 180), placeRotation.rotation.pitch)
} else {
Rotation(((MovementUtils.direction * 180f / Math.PI).toFloat() + 135), placeRotation.rotation.pitch)
} else {
Rotation(((MovementUtils.direction * 180f / Math.PI).toFloat() + 180), placeRotation.rotation.pitch)
}
}
"custom" -> {
Expand Down

0 comments on commit 69e89c1

Please sign in to comment.