Set default amountPerChunk for giant mushrooms

This commit is contained in:
Cheeserolls 2015-08-06 02:13:37 +01:00
parent c2fd292ba7
commit bba5f1fb84

View file

@ -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;}