Jump to content

headchopperz

Members
  • Posts

    2
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

headchopperz's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Sorry for delay, i had a long sleep ^^. I am on 1.5.2 using version 7.8.0.716 of forge (end of last month i think) The error is when im creating a new world, i get to the main menu fine, the console log looks like this: The code its referencing too is: MinecraftServer.java, line 639: [spoiler] try { worldserver.tick(); } catch (Throwable throwable) { crashreport = CrashReport.makeCrashReport(throwable, "Exception ticking world"); worldserver.addWorldInfoToCrashReport(crashreport); throw new ReportedException(crashreport); }[/spoiler] If i comment out the try - catch to see more information about the error, i get this message instead: Which points to this code: this.provider.worldChunkMgr.cleanupCache(); in WorldServer.java Using the debugger i can tell you that. this.provider = (mods.pokemob.common.World.Pokemob_WorldProvider) mods.pokemob.common.World.Pokemob_WorldProvider@ 7f0e8369 and this.provider.worldChunkMgr = (mods.pokemob.common.World.Pokemob_WorldChunkManager) mods.pokemob.common.World.Pokemob_WorldChunkManager@7a941409 If you want to know more information from the debugger just tell me
  2. Hi, ive spent the past two days trying to get multiple biomes to work on a custom dimension, and i think im pretty much there but i keep getting these NullPointer Errors when the code runs "this.provider.worldChunkMgr.cleanupCache();", in Wordserver.java. Sorry if its a bit much to read, but i really need help wit this, im stumped. Thanks. INIT Code: public static int DimID = 2; ... DimensionManager.registerProviderType(DimID, Pokemob_WorldProvider.class, false); DimensionManager.registerDimension(DimID, DimID); Here are my files: Pokemob_ChunkProvider.java Pokemob_WorldChunkManager Pokemob_WorldProvider Pokemob_GenLayer.java Pokemob_GenLayerBiome.java Pokemob_GenLayerIsland.java Pokemob_GenLayerVoronoiZoom.java Pokemob_GenLayerZoom.java Pokemob_BiomeGenBase.java Pokemob_BiomeDecorator.java Pokemob_BiomeCache.java Pokemob_BiomeCacheBlock.java Pokemob_ExtremeHills.java Pokemob_Hills.java
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.