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 052e445 commit eccd156
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1285,11 +1285,11 @@ class Scaffold : Module() {
}
"static2" -> {
if ((MovementUtils.movingYaw / 30).roundToInt() % 2 == 1) {
Rotation(((MovementUtils.direction * 180f / Math.PI).toFloat() + 180), placeRotation.rotation.pitch)
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)
}
Expand Down

0 comments on commit eccd156

Please sign in to comment.