Editor crash fix

This commit is contained in:
Anuken
2021-12-11 16:23:42 -05:00
parent 7e9dd2d6f0
commit 86a6ec6bd2
5 changed files with 100 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
tile.block = tile.floor.asFloor().wall;
if(Ridged.noise3d(1, position.x, position.y, position.z, 2, 14) > 0.15){
if(Ridged.noise3d(1, position.x, position.y, position.z, 2, 14) > 0.14){
tile.block = Blocks.air;
}