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 af1b01f commit 1679832Copy full SHA for 1679832
common/src/main/kotlin/com/lambda/interaction/request/rotating/RotationManager.kt
@@ -203,7 +203,7 @@ object RotationManager : RequestHandler<RotationRequest>(
203
fun getRotationForVector(deltaTime: Double): Vec2d? {
204
if (activeRequest?.mode == RotationMode.Silent) return null
205
206
- val rot = lerp(deltaTime, prevServerRotation, serverRotation)
+ val rot = lerp(deltaTime, serverRotation, activeRotation)
207
return Vec2d(rot.yaw, rot.pitch)
208
}
209
0 commit comments