Glitchy nether generation (possibly BoP related)
Tonius opened this issue · 10 comments
I have noticed Natura worldgen is quite glitchy in the Nether. The features like clouds, mushrooms and trees seem to disregard what is in the way when generating, causing them to spawn partly or completely inside walls or floors.
This happens at least with Biomes O' Plenty installed. I haven't tested it with the vanilla Nether yet. I have also noticed that Ghostwood trees and Tainted Soil don't spawn.
Again, this may be Biomes O' Plenty messing things up. Just thought I'd report it anyway.
worldgen is getting added this week in the https://github.com/progwml6/Natura/tree/1.10 branch if anyone has comments on 1.10 issues let us know or file PR's
Here are some examples: http://imgur.com/a/w1S5K
Glowshroom generation seems to be pretty bugged in general. For example, if you bonemeal a glowshroom, it only appears as a single glowshroom block; the whole thing only shows up after I relog.
Now that I have my new laptop later this week I'll try to get this fixed
On Aug 19, 2014, at 3:12 AM, Ryan Liptak [email protected] wrote:
Glowshroom generation seems to be pretty bugged in general. For example, if you bonemeal a glowshroom, it only appears as a single glowshroom block; the whole thing only shows up after I relog.
—
Reply to this email directly or view it on GitHub.
My guess is that the fundamental problem between BOP and Natura is that Natura's nether gneration is a hack that completely hijacks Nether dimension generation and is unaware of Nether biomes--so, BOP nether biomes, which (properly) interface with standard nether generation, never call the horrible hack that is Natura's nether generation. Thus no heat sand or tainted soil in BOP-generated nether.
I do not envy progwml6 the joy of re-writing Natura's nether gen code. I have idly wondered if it would work better for mod interoperability to scrap Natura's hack and use the ore-gen hooks to add tainted soil and heatsand. I assume the flora is handled by standard decoration hooks, since they do appear in BOP nether biomes.
Thus the reason that the entire worldgen system is getting redone in 1.8
On Apr 28, 2015, at 3:28 PM, Sinhika [email protected] wrote:
My guess is that the fundamental problem between BOP and Natura is that Natura's nether gneration is a hack that completely hijacks Nether dimension generation and is unaware of Nether biomes--so, BOP nether biomes, which (properly) interface with standard nether generation, never call the horrible hack that is Natura's nether generation. Thus no heat sand or tainted soil in BOP-generated nether.
I do not envy progwml6 the joy of re-writing Natura's nether gen code. I have idly wondered if it would work better for mod interoperability to scrap Natura's hack and use the ore-gen hooks to add tainted soil and heatsand. I assume the flora is handled by standard decoration hooks, since they do appear in BOP nether biomes.
—
Reply to this email directly or view it on GitHub.
I thought you might be. Good luck; that's some heavy lifting you're doing there. I've looked at some of that code.