From 71605adbaae8ab63725c9913406135bc53e8e988 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Mon, 13 Jan 2014 20:12:15 +1100 Subject: [PATCH] Fixed undecorated chunk "stripes" --- .../world/forcedworldgenerators/PondForcedGenerator.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/biomesoplenty/common/world/forcedworldgenerators/PondForcedGenerator.java b/src/main/java/biomesoplenty/common/world/forcedworldgenerators/PondForcedGenerator.java index d8ac70975..70d47930b 100644 --- a/src/main/java/biomesoplenty/common/world/forcedworldgenerators/PondForcedGenerator.java +++ b/src/main/java/biomesoplenty/common/world/forcedworldgenerators/PondForcedGenerator.java @@ -18,18 +18,18 @@ public class PondForcedGenerator extends ForcedWorldGeneratorBOP { for (int i = 0; i < 50 + bopDecoration.getWorldFeatures().waterPoolsPerChunk; ++i) { - int randX = x + random.nextInt(16); + int randX = x + random.nextInt(16) + 8; int randY = random.nextInt(random.nextInt(248) + 8); - int randZ = z + random.nextInt(16); + int randZ = z + random.nextInt(16) + 8; worldGenerator.generate(world, random, randX, randY, randZ); } for (int i = 0; i < 20 + bopDecoration.getWorldFeatures().lavaPoolsPerChunk; ++i) { - int randX = x + random.nextInt(16); + int randX = x + random.nextInt(16) + 8; int randY = random.nextInt(random.nextInt(random.nextInt(240) + 8) + 8); - int randZ = z + random.nextInt(16); + int randZ = z + random.nextInt(16) + 8; worldGenerator.generate(world, random, randX, randY, randZ); }