More campaign water
This commit is contained in:
@@ -300,6 +300,15 @@ public class SerpuloPlanetGenerator extends PlanetGenerator{
|
|||||||
floor = Blocks.magmarock;
|
floor = Blocks.magmarock;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}else if(floor != Blocks.basalt && floor != Blocks.ice && floor.asFloor().hasSurface()){
|
||||||
|
float noise = noise(x + 782, y, 5, 0.75f, 260f, 1f);
|
||||||
|
if(noise > 0.72f){
|
||||||
|
floor = noise > 0.78f ? Blocks.taintedWater : (floor == Blocks.sand ? Blocks.sandWater : Blocks.darksandTaintedWater);
|
||||||
|
ore = Blocks.air;
|
||||||
|
}else if(noise > 0.67f){
|
||||||
|
floor = (floor == Blocks.sand ? floor : Blocks.darksand);
|
||||||
|
ore = Blocks.air;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rand.chance(0.0075)){
|
if(rand.chance(0.0075)){
|
||||||
|
|||||||
Reference in New Issue
Block a user