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

@@ -58,7 +58,7 @@ public class SimplexCarver extends Carver {
if(finalNoise > 0.5) {
c.carve(x - ox, y, z - oz, type);
double finalNoiseUp = (-0.05 * Math.abs((y + 1) - (heightNoise * 16 + 24)) + 1 - simplex) * hc;
if (finalNoiseUp > 0.5) {
if(finalNoiseUp > 0.5) {
type = CarvingData.CarvingType.CENTER;
} else type = CarvingData.CarvingType.TOP;
}