Generator optimization
This commit is contained in:
parent
8e041e0e42
commit
92d4ccab6c
4 changed files with 26 additions and 2 deletions
|
@ -35,6 +35,7 @@ public class EndBiome {
|
|||
|
||||
private final float fogDensity;
|
||||
private EndFeature structuresFeature;
|
||||
private Biome actualBiome;
|
||||
|
||||
public EndBiome(BiomeDefinition definition) {
|
||||
biome = definition.build();
|
||||
|
@ -157,4 +158,12 @@ public class EndBiome {
|
|||
public EndFeature getStructuresFeature() {
|
||||
return structuresFeature;
|
||||
}
|
||||
|
||||
public void setActualBiome(Biome biome) {
|
||||
this.actualBiome = biome;
|
||||
}
|
||||
|
||||
public Biome getActualBiome() {
|
||||
return this.actualBiome;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue