More biome builder functions (generation settings, music)

This commit is contained in:
paulevsGitch 2021-12-01 13:56:37 +03:00
parent 14ab0c878b
commit c7c11d0b4c
7 changed files with 73 additions and 7 deletions

View file

@ -412,7 +412,7 @@ public class BiomeAPI {
*
*/
public static void addBiomeFeature(Biome biome, BCLFeature feature) {
addBiomeFeature(biome, feature.getPlacedFeature(), feature.getFeatureStep());
addBiomeFeature(biome, feature.getPlacedFeature(), feature.getDecoration());
}
/**
@ -434,7 +434,7 @@ public class BiomeAPI {
*/
public static void addBiomeFeatures(Biome biome, BCLFeature... features) {
for (BCLFeature feature: features) {
addBiomeFeature(biome, feature.getPlacedFeature(), feature.getFeatureStep());
addBiomeFeature(biome, feature.getPlacedFeature(), feature.getDecoration());
}
}