From 58600d70e1e26a898ae2c23174c5ba861b4944de Mon Sep 17 00:00:00 2001 From: Forstride Date: Fri, 5 Feb 2016 05:58:06 -0500 Subject: [PATCH] Added deserts to the edges of the Wasteland biome --- .../biomesoplenty/common/world/layer/GenLayerBiomeEdgeBOP.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/biomesoplenty/common/world/layer/GenLayerBiomeEdgeBOP.java b/src/main/java/biomesoplenty/common/world/layer/GenLayerBiomeEdgeBOP.java index f0175b294..3a6c1e25b 100644 --- a/src/main/java/biomesoplenty/common/world/layer/GenLayerBiomeEdgeBOP.java +++ b/src/main/java/biomesoplenty/common/world/layer/GenLayerBiomeEdgeBOP.java @@ -43,6 +43,9 @@ public class GenLayerBiomeEdgeBOP extends BOPGenLayer // line BOP canyon with BOP canyon ravine if (this.replaceBiomeEdge(parentVals, out, x, y, areaWidth, biomeId, BOPBiomes.canyon, BOPBiomes.canyon_ravine)) {continue;} + // line BOP wasteland with vanilla desert + if (this.replaceBiomeEdge(parentVals, out, x, y, areaWidth, biomeId, BOPBiomes.wasteland, Optional.of(BiomeGenBase.desert))) {continue;} + // line extreme hills with extreme hills edge if (this.replaceBiomeEdgeIfNecessary(parentVals, out, x, y, areaWidth, biomeId, BiomeGenBase.extremeHills.biomeID, BiomeGenBase.extremeHillsEdge.biomeID)) {continue;}