9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-28 11:39:07 +00:00

Cleanup sources

This commit is contained in:
Daniel Mills
2021-08-03 01:40:35 -04:00
parent 51a056b3d7
commit 43d7dfde4c
11 changed files with 59 additions and 92 deletions

View File

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