From bba5f1fb848bec1c5e273aa78de95492dc7083e4 Mon Sep 17 00:00:00 2001 From: Cheeserolls Date: Thu, 6 Aug 2015 02:13:37 +0100 Subject: [PATCH] Set default amountPerChunk for giant mushrooms --- .../common/world/feature/GeneratorBigMushroom.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/biomesoplenty/common/world/feature/GeneratorBigMushroom.java b/src/main/java/biomesoplenty/common/world/feature/GeneratorBigMushroom.java index 9dcf2c750..e734e8399 100644 --- a/src/main/java/biomesoplenty/common/world/feature/GeneratorBigMushroom.java +++ b/src/main/java/biomesoplenty/common/world/feature/GeneratorBigMushroom.java @@ -97,6 +97,7 @@ public class GeneratorBigMushroom extends BOPGeneratorBase public Builder() { + this.amountPerChunk = 1.0F; this.mushroomType = BigMushroomType.BROWN; this.placeOn = BlockQueries.fertile; this.replace = BlockQueries.airOrLeaves; @@ -173,7 +174,7 @@ public class GeneratorBigMushroom extends BOPGeneratorBase { int height = rand.nextInt(3) + 5; - + // check that there's room if (!this.isEnoughSpace(world, pos, height)) {return false;}