Jump to content

AlexIIL

Members
  • Posts

    3
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    Maintaining BuildCraft for 1.8.9

AlexIIL's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. After talking on IRC it turns out that a large issue was world.setBlockState(pos, (IBlockState) AGE, world.getBlockState(pos).getValue(AGE).intValue() + 1); when it should have been world.setBlockState(pos, getDefaultState().withProperty(AGE, currentMeta + 1));
  2. Do you get the exact same error? What may help would be to put a new line between each function call (so Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Asolin.MODID + ":" + item.getUnlocalizedName().substring(5), "inventory")); would become: Minecraft.getMinecraft() .getRenderItem() .getItemModelMesher() .register(item, 0, new ModelResourceLocation(Asolin.MODID + ":" + item. getUnlocalizedName(). substring(5), "inventory")); So you can see which function call is throwing an error, rather than just "somewhere in the entire line".
  3. I think the issue here is that Minecraft's RenderItem instance is initialised after init and before post-init. So, to make it would you would need to move the item rendering registration to post init.
×
×
  • Create New...

Important Information

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