Minor improvements

This commit is contained in:
Frank 2021-12-01 04:58:13 +01:00
parent 22bf4384c6
commit 39dda736af
4 changed files with 11 additions and 50 deletions

View file

@ -419,6 +419,17 @@ public class BiomeAPI {
});
}
/**
* Adds new features to existing biome.
* @param biome {@link Biome} to add features in.
* @param feature {@link ConfiguredFeature} to add.
*
*/
public static void addBiomeFeature(Biome biome, BCLFeature feature) {
addBiomeFeature(biome, feature.getPlacedFeature(), feature.getFeatureStep());
}
/**
* Adds new features to existing biome.
* @param biome {@link Biome} to add features in.