This commit is contained in:
Anuken 2021-06-12 14:09:24 -04:00
parent ecbf0dcf31
commit 3d76609f42
2 changed files with 2 additions and 2 deletions

View file

@ -390,7 +390,7 @@ public class Blocks implements ContentList{
yellowStoneWall = new StaticWall("yellow-stone-wall"){{
variants = 2;
yellowStone.asFloor().wall = this;
yellowStone.asFloor().wall = slag.asFloor().wall = this;
}};
rhyoliteWall = new StaticWall("rhyolite-wall"){{

View file

@ -106,7 +106,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
pass((x, y) -> {
if(floor != Blocks.redIce){
float noise = noise(x + 782, y, 7, 0.8f, 310f, 1f);
if(noise > 0.67f){
if(noise > 0.64f){
if(noise > 0.72f){
floor = Blocks.slag;
}else{