mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-07 05:50:54 +07:00
Fixed inaccessible gaps in Serpulo generator
This commit is contained in:
parent
278c4f17e5
commit
822fe9ab7a
@ -426,6 +426,9 @@ public class Blocks implements ContentList{
|
||||
|
||||
darkMetal = new StaticWall("dark-metal");
|
||||
|
||||
Seq.with(metalFloor, metalFloorDamaged, metalFloor2, metalFloor3, metalFloor4, metalFloor5, darkPanel1, darkPanel2, darkPanel3, darkPanel4, darkPanel5, darkPanel6)
|
||||
.each(b -> b.asFloor().wall = darkMetal);
|
||||
|
||||
pebbles = new DoubleOverlayFloor("pebbles");
|
||||
|
||||
tendrils = new OverlayFloor("tendrils");
|
||||
|
@ -244,8 +244,6 @@ public class SerpuloPlanetGenerator extends PlanetGenerator{
|
||||
cells(1);
|
||||
distort(10f, 6f);
|
||||
|
||||
inverseFloodFill(tiles.getn(spawn.x, spawn.y));
|
||||
|
||||
Seq<Block> ores = Seq.with(Blocks.oreCopper, Blocks.oreLead);
|
||||
float poles = Math.abs(sector.tile.v.y);
|
||||
float nmag = 0.5f;
|
||||
@ -296,6 +294,8 @@ public class SerpuloPlanetGenerator extends PlanetGenerator{
|
||||
|
||||
median(2);
|
||||
|
||||
inverseFloodFill(tiles.getn(spawn.x, spawn.y));
|
||||
|
||||
tech();
|
||||
|
||||
pass((x, y) -> {
|
||||
|
Loading…
Reference in New Issue
Block a user