Fixes
This commit is contained in:
parent
f7b1f6baff
commit
20f93cc9a4
7 changed files with 69 additions and 68 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue