Glitchfiend / TerraBlender

TerraBlender is a library mod for adding biomes in a simple and compatible manner with Minecraft's new biome/terrain system.
https://www.curseforge.com/minecraft/mc-mods/terrablender
GNU Lesser General Public License v3.0
82 stars 27 forks source link

"Exception generating new chunks error" #137

Closed CrypticVerse closed 8 months ago

CrypticVerse commented 8 months ago

What's the issue you encountered?

Developing a mod using TerraBlender, and when any world is started/opened, the log starts putting out "Exception generating new chunks", and the loading screen has visuals of loading chunks, but the percent at the top is stuck on 0%. When it is "done" loading chunks, the game crashes.

How can the issue be reproduced?

Develop a mod using terrablender 3.0.0.169, and launch the game. Before today, 11/19/23, this worked without problems.

Logs

https://gist.github.com/CrypticVerse/c63de1af535e1edf00deefc9670d84d6

Mod Version

0.1.1-beta.1

Additional information

No response

Adubbz commented 8 months ago

Your log mentions a feature order cycle, which isn't a TerraBlender issue. Rather, it's standard Vanilla behaviour. You need to ensure your features are added in the same order as Vanilla's features to prevent this from happening.

CrypticVerse commented 8 months ago

Tried this and it worked. Thank you!