Posted July 18, 201411 yr Whenever i make new world minecraft just crash. crash report : https://gist.github.com/Propucani2/856de7a426515751b257 ObsidianGenerationClass : https://gist.github.com/Propucani2/108aeea7525b415dd320 ObsidianOreClass : https://gist.github.com/Propucani2/c02de450e848fb8eb440 MainClass : https://gist.github.com/Propucani2/0f91e53d43e97f3da155
July 18, 201411 yr Author I was soo stupid i placed chunkX*17 switch(world.provider.dimensionId) { case -1: generateInNether(world, random, chunkX*17, chunkZ*16); break; case 0: generateInOverworld(world, random, chunkX*17, chunkZ*16); break; case 1: generateInEnd(world, random, chunkX*17, chunkZ*16); break; I needed to place chunkX*16 switch(world.provider.dimensionId) { case -1: generateInNether(world, random, chunkX*16, chunkZ*16); break; case 0: generateInOverworld(world, random, chunkX*16, chunkZ*16); break; case 1: generateInEnd(world, random, chunkX*16, chunkZ*16); break; Thanks Anyway and i placed little lower generate of ores that helped me too, thanks diesieben07.
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.