I can't get my ore to generate in the world...
I used the following generation code with no luck...
Is there something wrong with the code or a better way to do it?
public void GenerateSurface(World world, Random rand, int chunkX, int chunkZ)
{
for(int l = 0; l < 25; l++)
{
int i1 = chunkX + rand.nextInt(16);
int j1 = rand.nextInt(60);
int k1 = chunkZ + rand.nextInt(16);
(new WorldGenMinable(oreCopper.blockID, 10)).generate(world, rand, i1, j1, k1);
}
}
Sorry if this is in the wrong section.