Made sandy places have more layers of sand.

This commit is contained in:
Harrison Deng 2020-05-16 18:25:27 -05:00
parent 262a83c7e9
commit f95d0232b9

View File

@ -110,7 +110,7 @@ public class WorldLayerShader {
String biomeName = biome.toString().toLowerCase();
if (biomeName.contains("beach") || biomeName.contains("desert")) {
return (int) (getNormalizedNoise(worldX, worldZ, 1.3f) * 5) + 4;
return (int) (getNormalizedNoise(worldX, worldZ, 1.3f) * 8) + 5;
} else if (biomeName.contains("gravelly")) {
return (int) (getNormalizedNoise(worldX, worldZ, 1.3f) * 5);
}