Posted August 9, 201510 yr So I get an error in my biome registry class here is what I have put so far and the error is here:public static BiomeGenBase Biomearcane; on the ; here is what it says package Morpheus420.StormMastery.biome; import net.minecraft.world.biome.BiomeGenBase; import net.minecraftforge.common.BiomeDictionary; import net.minecraftforge.common.BiomeDictionary.Type; import net.minecraftforge.common.BiomeManager; public class BiomeRegistry { public static void MainClass(){ initializeBiome(); registerBiome(); } public static BiomeGenBase Biomearcane; biomearcane = new BiomeGenarcane(137).setBiomeName("Arcane"); public static void initializeBiome(){ } public static void registerBiome(){ BiomeDictionary.registerBiomeType(Biomearcane,Type.FOREST); BiomeManager.addSpawnBiome(Biomearcane); } } Syntax error on token ";", , expected. ive tried adding in commas but it doesn't work any ideas?
August 9, 201510 yr Author Ok so the tutorial I am following Is talking about a main registery class but I don't have one of them should I just do what the tutorial says in my main class? heres the link to the tutorial:https://www.youtube.com/watch?v=PztKQPfFC54&list=PLQutSmhiLfZlxpv2R7JYCv0Ad63cXD0Nv&index=11
August 10, 201510 yr Author Ok so I registered it in my main class but I tried like the tutorial said so I did BiomeRegistry.mainregistry(); but that came up with erros so I then put in BiomeRegistry.StormMastery(); but it also came up with this error Syntax error on token "StormMastery", Identifier expected after this token, do I need to somehow identifie it like it says or something entirely different?
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.