Fix formatting issues

Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
This commit is contained in:
solonovamax
2020-11-07 11:14:06 -05:00
parent c0e0dad100
commit 56671ac6a1
98 changed files with 1369 additions and 1492 deletions

View File

@@ -37,7 +37,7 @@ public class NoiseFunction2 implements Function {
public double get(double x, double z) {
for(int i = 0; i < cacheX.length; i++) {
if (cacheX[i] == x && cacheZ[i] == z) return cacheValues[i];
if(cacheX[i] == x && cacheZ[i] == z) return cacheValues[i];
}
cacheX[0] = x;
cacheZ[0] = z;