Jump to content

Registering biomes in 1.7.2


linkseyi

Recommended Posts

I've been trying to figure out biome spawning in Forge 1.7.2, but can't seem to get them to work.  I've got this instance in the base class:

 

public static BiomeGenBase exampleBiome = new BiomeGenExample();

 

And then I have the constructor set up in BiomeGenExample:

 

public class BiomeGenExample extends BiomeGenBase {

public BiomeGenExample() {
	super(50);
	this.biomeName = "Example";
	this.topBlock = Blocks.bedrock;
	this.fillerBlock = Blocks.dirt;
	this.rainfall = 0.5F;
	this.temperature = 0.5F;
                this.minHeight = 0.2F;
                this.maxHeight = 0.5F;
	this.enableRain = false;
}

}

 

I know previously there was a method in GameRegistry to make the biome spawn that is no longer there.  Should I have anything else to make this biome spawn, or am I just not looking hard enough?

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.

Announcements



×
×
  • Create New...

Important Information

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