Jump to content

Chibill

Forge Modder
  • Posts

    584
  • Joined

  • Last visited

Posts posted by Chibill

  1. I know. That is how it was on 1.8 and before.

     

    In 1.10 there are new events that have been added to Quote

    Add in registry registration events, new subscription events you can use to make sure you're registering things at the "best" time.
    Should I not care about those at all?

     

    Also from the release post.

    LifeCycle events: We have been for a while, and this is another step. Moving twards a data driven modding system. Modders PLEASE use these events to register anything to a registery. So we can keep track of what mod is doing what correctly. And so you can be sure you're doing it in the correct place! No more ambiguity over what events are for what!
  2. How? I don't think you can control when events are fired... (No way to delay it till after preInit)

     

    Like if i had a json that defined what blocks to enable I would have to do that logic in the Event that you "Should" register blocks in.

     

    Or should I disregard those and use the old way of doing it?

  3. I understand that we use the block state system to store properties and still have the 4-bit limit. But how do we make metadata blocks anyways now. I have looked a the dirt block and will try and get it workimg based off that but if anyone could at least give me a tip onchow i would be every thank full.

  4. All my code is on github at https://github.com/chibill/Additional-Ore-and-Ingots

     

    The log is

    [17:18:51] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas

    [17:18:52] [sound Library Loader/INFO]: Sound engine started

    [17:19:07] [server thread/INFO]: Starting integrated minecraft server version 1.7.10

    [17:19:07] [server thread/INFO]: Generating keypair

    [17:19:07] [server thread/INFO]: Converting map!

    [17:19:07] [server thread/INFO]: Scanning folders...

    [17:19:07] [server thread/INFO]: Total conversion count is 0

    [17:19:08] [server thread/INFO]: Preparing start region for level 0

    [17:19:08] [server thread/ERROR]: Encountered an unexpected exception

    java.lang.NullPointerException

    at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:96) ~[ExtendedBlockStorage.class:?]

    at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:667) ~[Chunk.class:?]

    at net.minecraft.world.World.setBlock(World.java:515) ~[World.class:?]

    at net.minecraft.world.gen.feature.WorldGenMinable.generate(WorldGenMinable.java:79) ~[WorldGenMinable.class:?]

    at chibill.additionaloreingots.common.OreGen.addOreSpawn(OreGen.java:71) ~[OreGen.class:?]

    at chibill.additionaloreingots.common.OreGen.GenerateOverworld(OreGen.java:40) ~[OreGen.class:?]

    at chibill.additionaloreingots.common.OreGen.generate(OreGen.java:18) ~[OreGen.class:?]

    at cpw.mods.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:106) ~[GameRegistry.class:?]

    at net.minecraft.world.gen.ChunkProviderServer.populate(ChunkProviderServer.java:316) ~[ChunkProviderServer.class:?]

    at net.minecraft.world.chunk.Chunk.populateChunk(Chunk.java:1163) ~[Chunk.class:?]

    at net.minecraft.world.gen.ChunkProviderServer.originalLoadChunk(ChunkProviderServer.java:210) ~[ChunkProviderServer.class:?]

    at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:151) ~[ChunkProviderServer.class:?]

    at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:121) ~[ChunkProviderServer.class:?]

    at net.minecraft.server.MinecraftServer.initialWorldChunkLoad(MinecraftServer.java:315) ~[MinecraftServer.class:?]

    at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:79) ~[integratedServer.class:?]

    at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:96) ~[integratedServer.class:?]

    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:455) [MinecraftServer.class:?]

    at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:762) [MinecraftServer$2.class:?]

    [17:19:08] [server thread/ERROR]: This crash report has been saved to: C:\Users\bill\Documents\GitHub\Additional-Ore-and-Ingots\eclipse\.\crash-reports\crash-2014-09-06_17.19.08-server.txt

     

    I striped out the texture errors because i don't have the textures.

     

    But I don't understand why this is erroring nothing is null any where.

×
×
  • Create New...

Important Information

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