9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-28 19:49:06 +00:00

Spawners in objects closes

This commit is contained in:
Daniel Mills
2021-08-03 01:37:03 -04:00
parent 6e22d6687c
commit 51a056b3d7
22 changed files with 460 additions and 77 deletions

View File

@@ -114,6 +114,11 @@ public class RNG extends Random {
}
public double d(double lowerBound, double upperBound) {
if(lowerBound > upperBound)
{
return M.lerp(upperBound, lowerBound, nextDouble());
}
return M.lerp(lowerBound, upperBound, nextDouble());
}