Advertisement
ViiRuS

Ore Generataion Code

Nov 25th, 2011
2,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. public void GenerateSurface(World world, Random random, int i, int j)
  2. {
  3.     for(int i4 = 0; i4 < 20; i4++)
  4.     {
  5.         int j7 = i + random.nextInt(16);
  6.         int k10 = random.nextInt(128);
  7.         int j13 = j + random.nextInt(16);
  8.         (new WorldGenMinable(mod_BlocksGalore.bluecobblestone.blockID, 8)).generate(world, random, j7, k10, j13);
  9.     }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement