Hello,
I'm creating my two custom biomes, but I'm having some problems.
https://github.com/robinroloff/alpinemod this is my repo
In the ModOverworldRegion, I do this:
@Override
public void addBiomes(Registry<Biome> registry, Consumer<Pair<Climate.ParameterPoint, ResourceKey<Biome>>> mapper) {
biome(mapper, AlpineBiomes.ALPS, Temperature.FROZEN.parameter(), Humidity.HUMID.parameter(), Continentalness.FAR_INLAND.parameter(), Erosion.EROSION_0.parameter(), Weirdness.PEAK_VARIANT.parameter());
biome(mapper, AlpineBiomes.ALPS_VALLEY, Temperature.NEUTRAL.parameter(), Humidity.NEUTRAL.parameter(), Continentalness.FAR_INLAND.parameter(), Climate.Parameter.span(0.5F, 1F), Climate.Parameter.span(-0.35F, 0.35F));
}
private void biome(Consumer<Pair<Climate.ParameterPoint, ResourceKey<Biome>>> mapper, ResourceKey<Biome> biome, Climate.Parameter temperature, Climate.Parameter humidity, Climate.Parameter continentalness, Climate.Parameter erosion, Climate.Parameter weirdness) {
mapper.accept(Pair.of(Climate.parameters(temperature, humidity, continentalness, erosion, Depth.FLOOR.parameter(), weirdness, 0F), biome));
mapper.accept(Pair.of(Climate.parameters(temperature, humidity, continentalness, erosion, Depth.SURFACE.parameter(), weirdness, 0F), biome));
}
I expect the following behaviour:
Alps biome:
-Only spawns in huge mountains (e.g. like jagged_peaks) and only next to other cold and only surrounded by land.
Alps valley biome:
-Spawns in mostly flat (like plains biome) regions, also only surrounded by land.
However:
Both biomes kind of spawn everywhere. The alps biome also spawns in a lot of flat regions, which doesn't make sense to me at all.
They just spawn randomly in the middle of the sea and there will just be a random house (my structure) in the middle of the ocean, even though I put "FAR_INLAND" as continentalness, which should make it impossible to spawn in the sea, in my opinion.
They sometimes spawn next to each other, which should also be impssible, because neither weirdness, nor erosion have any overlap for the two biomes
I've also had another bug with TerraBlender in the past, do you guys think it's my bad for using 1.20 and not 1.20.4, maybe the TerraBlender version is just buggy and outdated?
Because I really see no logic