From 69e89c1400690630090cf553fd6597fa6da3e376 Mon Sep 17 00:00:00 2001 From: Dg636 Date: Tue, 16 Jan 2024 17:54:58 -0500 Subject: [PATCH] Update Scaffold.kt --- .../features/module/modules/movement/Scaffold.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/net/ccbluex/liquidbounce/features/module/modules/movement/Scaffold.kt b/src/main/java/net/ccbluex/liquidbounce/features/module/modules/movement/Scaffold.kt index 8d36e206f5..bd56af4d88 100644 --- a/src/main/java/net/ccbluex/liquidbounce/features/module/modules/movement/Scaffold.kt +++ b/src/main/java/net/ccbluex/liquidbounce/features/module/modules/movement/Scaffold.kt @@ -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" -> {