Verbatim Name for BCLib BiomeSources
This commit is contained in:
parent
7939c4ec2e
commit
0c24a03b18
3 changed files with 11 additions and 1 deletions
|
@ -22,7 +22,7 @@ public abstract class BiomeSourceMixin implements BiomeSourceAccessor {
|
||||||
@Mutable @Shadow @Final private List<StepFeatureData> featuresPerStep;
|
@Mutable @Shadow @Final private List<StepFeatureData> featuresPerStep;
|
||||||
|
|
||||||
public void bclRebuildFeatures(){
|
public void bclRebuildFeatures(){
|
||||||
BCLib.LOGGER.info("Rebuilding features in BiomeSource " + this.getClass());
|
BCLib.LOGGER.info("Rebuilding features in BiomeSource " + this);
|
||||||
featuresPerStep = buildFeaturesPerStep(this.possibleBiomes().stream().toList(), true);
|
featuresPerStep = buildFeaturesPerStep(this.possibleBiomes().stream().toList(), true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -191,4 +191,9 @@ public class BCLibEndBiomeSource extends BCLBiomeSource {
|
||||||
public static void register() {
|
public static void register() {
|
||||||
Registry.register(Registry.BIOME_SOURCE, BCLib.makeID("end_biome_source"), CODEC);
|
Registry.register(Registry.BIOME_SOURCE, BCLib.makeID("end_biome_source"), CODEC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "BCLib - The End BiomeSource";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -153,4 +153,9 @@ public class BCLibNetherBiomeSource extends BCLBiomeSource {
|
||||||
this.biomeMap = mapConstructor.apply(seed, GeneratorOptions.getBiomeSizeNether(), BiomeAPI.NETHER_BIOME_PICKER);
|
this.biomeMap = mapConstructor.apply(seed, GeneratorOptions.getBiomeSizeNether(), BiomeAPI.NETHER_BIOME_PICKER);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "BCLib - Nether BiomeSource";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue