Core/AreaTriggers: Handle AREATRIGGER_FLAG_HAS_DYNAMIC_SHAPE for disks

Port From (https://github.com/TrinityCore/TrinityCore/commit/5be076b2400364c5fc2b293032ad92f1d955ec1f)
This commit is contained in:
hondacrx
2023-09-02 15:11:38 -04:00
parent 9ecb3449d5
commit 91f750e562
2 changed files with 18 additions and 5 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ public static class MathFunctions
return 0.0000005f * aa;
}
public static float lerp(float a, float b, float f)
public static float Lerp(float a, float b, float f)
{
return a + (b - a) * f;
}