This commit is contained in:
paulevsGitch 2020-10-24 16:47:30 +03:00
parent f7b1f6baff
commit 20f93cc9a4
7 changed files with 69 additions and 68 deletions

View file

@ -16,14 +16,14 @@ public class BiomePicker {
public void addBiome(EndBiome biome) {
biomes.add(biome);
maxChance = biome.setGenChance(maxChance);
maxChance = biome.mutateGenChance(maxChance);
biomeCount ++;
maxChanceUnmutable = maxChance;
}
public void addBiomeMutable(EndBiome biome) {
biomes.add(biome);
maxChance = biome.setGenChance(maxChance);
maxChance = biome.mutateGenChance(maxChance);
}
public void clearMutables() {