Is there a way to remove Flowing Lava from nether generation?
KelleyEngineering opened this issue ยท 2 comments
I'm attempting to replace all Lava in the nether with Thermal Foundation mana, and so far I've succeeded, however Flowing Lava remains persistant. Is there a way to ensure that flowing lava gets replaced as well? I'd settle for it being completely removed as well. The script I'm using for the replacement is posted below.
Tweaker.setPlacementStage("PRE_POPULATE")
testUG.registerGenBlockRep("minecraft:lava", "thermalfoundation:fluid_mana")
testUG.registerGenBlockRep("minecraft:flowing_lava", "thermalfoundation:fluid_mana")
These are two pictures showing how Flowing lava continues to spawn upon initial Nether Generation. The Second picture shows that Lava was replaced in the ceiling but Flowing Lava pre-generated and doesn't update.
I would either remove flowing lava completely, or modify your replacement to not check metadata.
To remove the flowing lava, use the removeFeature
command:
https://github.com/superckl/BiomeTweaker/wiki/Basic-Script-Commands#removefeature
To replace it, you need to use a block replacement object. See the ingoreMeta
option in
https://github.com/superckl/BiomeTweaker/wiki/On-the-Topic-of-Block-Replacement#advanced-block-replacements