Better naval check

This commit is contained in:
Anuken
2020-03-22 11:30:15 -04:00
parent ea3e16ee16
commit 53a6297b59
4 changed files with 10 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ public class Planets implements ContentList{
}};
starter = new Planet("TODO", sun, 3, 1){{
generator = new TestPlanetGenerator();
generator = new TODOPlanetGenerator();
meshLoader = () -> new HexMesh(this, 6);
}};
}

View File

@@ -12,7 +12,7 @@ import mindustry.world.*;
import static mindustry.Vars.*;
public class TestPlanetGenerator extends PlanetGenerator{
public class TODOPlanetGenerator extends PlanetGenerator{
Simplex noise = new Simplex();
RidgedPerlin rid = new RidgedPerlin(1, 2);
float scl = 5f;