Updated uCore

This commit is contained in:
Anuken
2018-06-13 21:18:52 -04:00
parent 4be101e9fc
commit 63d5539427
3 changed files with 3 additions and 3 deletions

View File

@@ -105,7 +105,7 @@ public class WorldGenerator {
for(int i = ores.size-1; i >= 0; i --){
OreEntry entry = ores.get(i);
if(entry.noise.octaveNoise2D(2, 0.7, 1f / (20 + i*4), x, y)/2f +
if(entry.noise.octaveNoise2D(2, 0.7, 1f / (2 + i*2), x, y)/2f +
entry.ridge.getValue(x, y, 1f / (28 + i*4)) >= 2.0f - entry.frequency*4.0f
&& entry.ridge.getValue(x+9999, y+9999, 1f/100f) > 0.4){
tile.setFloor(entry.block);