Posted March 22, 20169 yr Hi, I'm currently updating my mod from 1.8.9 to 1.9. I started with 600+ errors and now I fixed everything, that means nearly everything... I currently get the following error when I try to launch Minecraft from Eclipse: http://pastebin.com/DEtMVzVF My code is the following: MinaMod.getProxy().registerBlock(blockHoneycomb, "honeycomb"); public void registerBlock(Block block, String name, String... variantNames){ GameRegistry.registerBlock(block, name); } Could it be a bug in Forge itself? I mean it could be possible as Forge for 1.9 has just been released.
March 22, 20169 yr Author I found the error, a block which extended BlockDirectional allowed vertical facings but was meant only for horizontal ones. So for vertical facings, it gave a metadata of -1. I fixed it by letting it extend BlockHorizontal. Thank you.
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.