Posted March 4, 201312 yr Hello. I have created a new dimension, but when I try to travel to it I get an error. Please help and thanks in advance. Error: http://paste.ubuntu.com/5585271/ MysticBiomeDecorator.java: http://paste.ubuntu.com/5585279/
March 4, 201312 yr at mysticrealm.common.world.biomes.MysticBiomeDecorator.decorate(MysticBiomeDecorator.java:63) okay lets look at line 63: var5.setScale(1.0D, 1.0D, 1.0D); hmm what is var5? on line 62: WorldGenerator var5 = this.biome.getRandomWorldGenForTrees(this.randomGenerator); For some reason the value of var5 on line 63 is null, thats what the error message is saying. So why is it null, if we look at the call on line 62 it should be instanciated but it's not. So from the stacktrace and code we can deduce that the error is with line 62. Set a breakpoint at line 62 and check what happends, I'm sure the getRandomWorldGenForTrees is returning null for some reason. If you guys dont get it.. then well ya.. try harder...
March 4, 201312 yr Author After stepping into the break point it led to this part of MysticBiomeGenBase.java: MysticWorldGenTrees worldMysticGenTrees; @Override public WorldGenerator getRandomWorldGenForTrees(Random par1) { return this.worldMysticGenTrees; } and here is MysticWorldGenTrees.java: http://paste.ubuntu.com/5585309/
March 5, 201312 yr Author Just a small update. It does the same thing when using the vanilla Minecraft biome decorator.
March 6, 201312 yr Yeah it lead to that part where it returned something.. But what was that value at that specific time? If you guys dont get it.. then well ya.. try harder...
March 6, 201312 yr Author Yeah it lead to that part where it returned something.. But what was that value at that specific time? I don't know what you mean, but this.biome.getRandomWorldGenForTrees(this.randomGenerator) leads to net.minecraft.world.biome.BiomeGenBase.getRandomWorldGenForTrees(Random par1Random)
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.