Posted May 9, 201312 yr Hi I have a class generating trees. The problem is it appears my tree is being spawned, then other trees in the forest or jungle are being spawned, and their leaf blocks are replacing my tree trunk blocks. How would I have it the other way around, that is my tree trunk growing through the other trees leaves? Is it about the order of the tree generators? I am adding my class in preInit() with GameRegistry.registerWorldGenerator(new SmallTreeWorldGen()); Can I make my trees spawn last in a chunk?
May 10, 201312 yr Author The following fixed that issue @Override public boolean canBeReplacedByLeaves(World world, int x, int y, int z) { return false; } But I still have an issues with vines replacing my trunk blocks. See Image here http://s15.postimg.org/xgz4geyrv/vines.png
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.