From a257dec59a5ac52d12846754f3a1a51f69679453 Mon Sep 17 00:00:00 2001 From: Forstride Date: Wed, 10 Feb 2016 02:59:31 -0500 Subject: [PATCH] Allowed villages to spawn in the orchard, removed villages from the tundra --- .../biomesoplenty/common/biome/overworld/BiomeGenOrchard.java | 2 +- .../biomesoplenty/common/biome/overworld/BiomeGenTundra.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenOrchard.java b/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenOrchard.java index ba58a1f1c..6667016e4 100644 --- a/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenOrchard.java +++ b/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenOrchard.java @@ -42,7 +42,7 @@ public class BiomeGenOrchard extends BOPBiome this.addWeight(BOPClimates.WARM_TEMPERATE, 3); - this.canGenerateVillages = false; + this.canGenerateVillages = true; this.spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 1, 2, 6)); this.spawnableCreatureList.add(new SpawnListEntry(EntityButterfly.class, 6, 2, 4)); diff --git a/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenTundra.java b/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenTundra.java index 33e7177e1..253dc575e 100644 --- a/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenTundra.java +++ b/src/main/java/biomesoplenty/common/biome/overworld/BiomeGenTundra.java @@ -43,7 +43,7 @@ public class BiomeGenTundra extends BOPBiome this.canGenerateRivers = false; this.canSpawnInBiome = false; - this.canGenerateVillages = true; + this.canGenerateVillages = false; if (BOPBiomes.gravel_beach.isPresent()) {