Biome generation in custom worldgen types (1.12.2)
GutontheInternet opened this issue ยท 1 comments
I'm having troubles with removing biomes from modded world types.
Specifically I'm trying to remove all savanna-type biomes, roofed forest biomes and flower forest biomes from Beta+ and RTG-Realistic world types. My script seems to work fine with vanilla world types but not with modded ones.
I've tried several scripts, but none of them appear to be working properly outside of vanilla worldgen, here are my most recent ones:
SavannaBiomes = forBiomesOfTypes("SAVANNA")
SavannaBiomes.registerGenBiomeRep(1)
SavannaBiome = forBiomes("minecraft:savanna")
MSavannaBiome = forBiomes("minecraft:mutated_savanna")
PSavannaBiome = forBiomes("minecraft:savanna_rock")
MPSavannaBiome = forBiomes("minecraft:mutated_savanna_rock")
FlowerBiome = forBiomes("minecraft:mutated_forest")
SavannaBiome.registerGenBiomeRep(21)
PSavannaBiome.registerGenBiomeRep(21)
MSavannaBiome.registerGenBiomeRep(2)
MPSavannaBiome.registerGenBiomeRep(2)
FlowerBiome.registerGenBiomeRep(4)
Please send help.