Jump to content

BiomeRegistry


Morpheus420

Recommended Posts

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?

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

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