Advertisement
Guest User

help

a guest
May 5th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public void generateSurface(World world, java.util.Random rand, int chunkX, int chunkZ){
  2. for(int i = 0; i < 16; i++){
  3. int randPosX = chunkX + rand.nextInt(16);
  4. int randPosY = rand.nextInt(74)+54;
  5. int randPosZ = chunkZ + rand.nextInt(16);
  6. (new WorldGenMinable(mcreator_columbiteOre.block.getDefaultState(), 21)).generate(world, rand, new BlockPos(randPosX, randPosY, randPosZ));
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement