Jump to content

Recommended Posts

Posted

Hi,

I'm new to modding and am not sure how to fix the world taking 10 minutes to generate. Here is the code I have.

Full repo here https://github.com/KaminoCoding/JAMOA/tree/master/src/main/java/com/endergriefer/jamoa/world

 

package com.endergriefer.jamoa.world;

import com.endergriefer.jamoa.blocks.ModBlocks;
import cpw.mods.fml.common.IWorldGenerator;
import net.minecraft.world.World;
import net.minecraft.world.chunk.IChunkProvider;
import net.minecraft.world.gen.feature.WorldGenMinable;

import java.util.Random;

/**
* Created by noah on 5/14/14.
*/
public class WorldGenjamoa implements IWorldGenerator
{
    public void generate(Random rand, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider)
    {
        switch(world.provider.dimensionId)
        {
            case -1:
                generateNether(world, rand, chunkX * 16, chunkZ * 16);
            case 0:
                generateSurface(world, rand, chunkX*16, chunkZ*16);
        }
    }

    private void generateSurface(World world, Random rand, int chunkX, int chunkZ)
    {
        for(int i = 0; i < 10; i++) {
            int randPosX = chunkX + rand.nextInt(16);
            int randPosY = rand.nextInt(40);
            int randPosZ = chunkZ + rand.nextInt(16);

            (new WorldGenMinable(ModBlocks.superbiumOre, 5)).generate(world, rand, randPosX, randPosY, randPosZ);
        }

        for (int j = 0; j < 25; j++) {
            int randPosX = chunkX + rand.nextInt(12);
            int randPosY = rand.nextInt(80);
            int randPosZ = chunkZ + rand.nextInt(12);

            (new WorldGenMinable(ModBlocks.aradactiteOre, ).generate(world, rand, randPosX, randPosY, randPosZ);
        }
    }


    private void generateNether(World world, Random rand, int i, int j)
    {

    }

}

Posted

Well, this really depends on the computer, but when you start up the world it tries to generate Aradactite Ore 24 times per chunk (I believe), and there are a crapload of chunks in Minecraft. I would lower it to something more reasonable like 10.

Developer of the WIP Rubies mod.

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.