Actually gets to world gen now B)

This commit is contained in:
dfsek
2020-11-27 02:08:25 -07:00
parent 96ff875d2b
commit f364420007
14 changed files with 55 additions and 19 deletions

View File

@@ -45,7 +45,7 @@ public class TerraWorld {
Debug.info("Loaded single-biome grid " + partName);
} else {
BiomeGridBuilder g = config.getBiomeGrid(partName);
definedGrids[i] = g.build(w);
definedGrids[i] = g.build(w, worldConfig);
}
} catch(NullPointerException e) {
safe = false;
@@ -66,7 +66,7 @@ public class TerraWorld {
Debug.info("Loaded single-biome erosion grid " + erosionName);
} else {
BiomeGridBuilder g = Objects.requireNonNull(config.getBiomeGrid(erosionName));
erosion = g.build(w);
erosion = g.build(w, worldConfig);
}
} catch(NullPointerException e) {
safe = false;