From f107ba76e9ac587d5d18a371717016a61a4b1e51 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Wed, 18 Dec 2013 20:26:59 +0200 Subject: made shadow ore generate higher up --- common/darkknight/jewelrycraft/worldGen/Generation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') 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); } -- cgit v1.2.3