even better fov multiplier

This commit is contained in:
Bixilon 2021-06-26 00:19:41 +02:00
parent e94c95c2a8
commit bd160145ec
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

View File

@ -624,7 +624,7 @@ class LocalPlayerEntity(
sendMovementPackets()
lastFovMultiplier = currentFovMultiplier
currentFovMultiplier = MMath.clamp((1.0 + walkingSpeed * 1.5), 1.0, 2.0)
currentFovMultiplier = 1.0 + MMath.clamp(walkingSpeed * 1.6, -2.0, 2.0)
}
companion object {