Biome selector no longer requires random parameter.

Implemented new biome selector changes.
This commit is contained in:
2020-04-29 15:03:35 -05:00
parent c2fb0ffea8
commit 5b1bb4288d
3 changed files with 6 additions and 4 deletions

View File

@@ -32,6 +32,10 @@ public class BiomeSelector {
temperaturePartitionedOceanBiomes.put(0.5f, new ArrayList<>());
}
public BiomeSelector() {
this(new Random());
}
public void initialize() {
if (initialized) throw new IllegalStateException("Biome selector is already initialized.");