java.lang.NullPointerException
at com.morethings.morethingsmod.morethingsmod.preinit(morethingsmod.java:139) ~[bin/:?]
What's on line 139 in
morethingsmod.java
?
So this is giving you an error?
@Override
public TileEntity createTileEntity(World world, int meta)
{
return new TileEntityCable();
}
It should work if it's like that. You still have the
hasTileEntity
method?
Ah, now I see the issue. You have called your method
createNewTileEntity
while it should be
createTileEntity
. In the future, add the
@Override
annotation to all your methods you expect to override a method, as it will throw an error if the method doesn't exist in one of the super classes.
1) Update to 1.7.10, 1.6.4 is old.
2)
java.lang.NullPointerException
at net.minecraft.world.biome.WorldChunkManager.getTemperatures(WorldChunkManager.java:121)
Place a breakpoint on that line 121 in
WorldChunkManager.java
and inspect all the values that could possibly be null, and the trace back the code to figure out why it's null.
1)
java.lang.NullPointerException
at common.zeroquest.events.FOVEvent.FOVUpdate(FOVEvent.java:14) ~[FOVEvent.class:?]
Something is null on line 14 in the FOVEvent class.
2)
if(Constants.DEF_DARKLOAD == true)
What..?
tt]Thread.sleep(100)[/code]] stops the whole game, not just the block placing. You need to count ticks if you want a delay between breaking the blocks.