Core/VMaps: Fixes getting no area/zone info, which caused you to be dismounted.

This commit is contained in:
hondacrx
2022-06-23 15:55:45 -04:00
parent 9f77e39899
commit 0f655d09ca
7 changed files with 16 additions and 17 deletions
+2 -2
View File
@@ -85,9 +85,9 @@ public static class MathFunctions
{
float aa = Math.Abs(a) + 1.0f;
if (float.IsPositiveInfinity(aa))
return 0.00001f;
return 0.0000005f;
return 0.00001f * aa;
return 0.0000005f * aa;
}
public static float lerp(float a, float b, float f)