Changed method name to make intent clear
This commit is contained in:
parent
c0ce7f6e35
commit
513fea6968
1 changed files with 3 additions and 3 deletions
|
@ -516,7 +516,7 @@ public class BiomeAPI {
|
||||||
|
|
||||||
List<BiConsumer<ResourceLocation, Biome>> modifications = MODIFICATIONS.get(level.dimension());
|
List<BiConsumer<ResourceLocation, Biome>> modifications = MODIFICATIONS.get(level.dimension());
|
||||||
for (Biome biome : biomes) {
|
for (Biome biome : biomes) {
|
||||||
applyModificationsToBiome(modifications, biome);
|
applyModificationsAndUpdateFeatures(modifications, biome);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -545,7 +545,7 @@ public class BiomeAPI {
|
||||||
((BiomeSourceAccessor) source).bclRebuildFeatures();
|
((BiomeSourceAccessor) source).bclRebuildFeatures();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void applyModificationsToBiome(List<BiConsumer<ResourceLocation, Biome>> modifications, Biome biome) {
|
private static void applyModificationsAndUpdateFeatures(List<BiConsumer<ResourceLocation, Biome>> modifications, Biome biome) {
|
||||||
ResourceLocation biomeID = getBiomeID(biome);
|
ResourceLocation biomeID = getBiomeID(biome);
|
||||||
if (modifications!=null) {
|
if (modifications!=null) {
|
||||||
modifications.forEach(consumer -> {
|
modifications.forEach(consumer -> {
|
||||||
|
@ -657,7 +657,7 @@ public class BiomeAPI {
|
||||||
/**
|
/**
|
||||||
* For internal use only!
|
* For internal use only!
|
||||||
*
|
*
|
||||||
* Adds new features to existing biome. Called from {@link #applyModificationsToBiome(List, Biome)} when the Biome is
|
* Adds new features to existing biome. Called from {@link #applyModificationsAndUpdateFeatures(List, Biome)} when the Biome is
|
||||||
* present in any {@link BiomeSource}
|
* present in any {@link BiomeSource}
|
||||||
* @param biome {@link Biome} to add features in.
|
* @param biome {@link Biome} to add features in.
|
||||||
* @param featureMap Map of {@link ConfiguredFeature} to add.
|
* @param featureMap Map of {@link ConfiguredFeature} to add.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue