Posted March 17, 201312 yr I have this syntax error and i have no idea how to fix it @Mod(modid = "Parallel Worlds", name = "Parallel Worlds", version = "1.0.0") @NetworkMod(clientSideRequired = true, serverSideRequired = false) public class ParallelWorlds { Block parallelworldsBlock; int parallelworldsBlockID = 682; @Init public void load(FMLInitializationEvent event){ parallelworldsBlock = new BlockParallelWorldsBlock(parallelworldsBlockID, 1, Material.iron).setUnlocalizedName("Nightium"); gameRegisters(); languageRegisters(); } public void gameRegisters(){ GameRegistry.registerBlock(parallelworldsBlock);} public void languageRegisters(){ LanguageRegistry.addName(parallelworldsBlock, "Nightium"); } } } } It's the }, 3rd from the bottom STOP CRUCIFYING NEW MODDERS!!!!
March 17, 201312 yr you have one too many }'s just delete it Use examples, i have aspergers. Examples make sense to me.
March 17, 201312 yr Author you have one too many }'s just delete it Thank you STOP CRUCIFYING NEW MODDERS!!!!
March 17, 201312 yr No problem! glad i could help Use examples, i have aspergers. Examples make sense to me.
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.