summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/worldGen/Generation.java
diff options
context:
space:
mode:
Diffstat (limited to 'common/darkknight/jewelrycraft/worldGen/Generation.java')
-rw-r--r--common/darkknight/jewelrycraft/worldGen/Generation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/darkknight/jewelrycraft/worldGen/Generation.java b/common/darkknight/jewelrycraft/worldGen/Generation.java
index 1aff53f..d67b726 100644
--- a/common/darkknight/jewelrycraft/worldGen/Generation.java
+++ b/common/darkknight/jewelrycraft/worldGen/Generation.java
@@ -32,10 +32,10 @@ public class Generation implements IWorldGenerator
private void generateSurface(World world, Random random, int i, int j)
{
- for (int k = 0; k < 1; k++)
+ for (int k = 1; k < 2; k++)
{
int x = i + random.nextInt(16);
- int y = random.nextInt(5);
+ int y = random.nextInt(7);
int z = j + random.nextInt(16);
(new WorldGenMinable(BlockList.shadowOre.blockID, 1)).generate(world, random, x, y, z);
}