summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-18 20:26:59 +0200
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-18 20:26:59 +0200
commitf107ba76e9ac587d5d18a371717016a61a4b1e51 (patch)
tree57e3059412b11059b97d60c99e805a4731296392 /common
parent76a47a26faaacd744e276b5cedeca1025ed0f280 (diff)
made shadow ore generate higher up
Diffstat (limited to 'common')
-rw-r--r--common/darkknight/jewelrycraft/worldGen/Generation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/darkknight/jewelrycraft/worldGen/Generation.java b/common/darkknight/jewelrycraft/worldGen/Generation.java
index d67b726..514820a 100644
--- a/common/darkknight/jewelrycraft/worldGen/Generation.java
+++ b/common/darkknight/jewelrycraft/worldGen/Generation.java
@@ -35,7 +35,7 @@ public class Generation implements IWorldGenerator
for (int k = 1; k < 2; k++)
{
int x = i + random.nextInt(16);
- int y = random.nextInt(7);
+ int y = 5 + random.nextInt(4);
int z = j + random.nextInt(16);
(new WorldGenMinable(BlockList.shadowOre.blockID, 1)).generate(world, random, x, y, z);
}