diff --git a/classes/UTComp_xPawn.uc b/classes/UTComp_xPawn.uc index 058bd3b..2ea1797 100644 --- a/classes/UTComp_xPawn.uc +++ b/classes/UTComp_xPawn.uc @@ -1013,7 +1013,7 @@ event UpdateEyeHeight( float DeltaTime ) EyeHeightOffset += BaseEyeHeight - OldBaseEyeHeight; OldBaseEyeHeight = BaseEyeHeight; - EyeHeightOffset *= (1.0 - FMin(20.0*DeltaTime/Level.TimeDilation, 1.0)); + EyeHeightOffset *= Exp(-10.0 * DeltaTime); EyeHeight = BaseEyeHeight - EyeHeightOffset; Controller.AdjustView(DeltaTime);