Jump to content

[unsolved] how to get my ore and biome to only spawn in my dimension


TheGrovesyProject101

Recommended Posts

not definite as I've not done any biome or dimension ID stuff myself, but in the biome spawning script(and ore) can you not get it to check the world dimension id (using world.provider.dimensionID) and if it is not equal to your dimensions id return false or stop the script or something (I'm assuming a world parameter is passed somewhere)

 

again i've not got any experience of this but that would be my first guess

Link to comment
Share on other sites

  • 1 month later...

If you want a certain ore, in your dimension.

 

You need to put the ore in the biome, here is an example.

 

public void generateSurface(World world, int x, int y, int z, Random rand)

BiomeGenBase biome = new BiomeGenBase(); something like that.

YourOre ore = new YourOre();

 

if (biome instanceof BiomeGenBase.YOURBIOME)

{

    //add your generating stuff

    ore.generate(world, x, y, z, rand);

}

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.