From a8b6fe6d0fff00d8a4a10dec049a015ae52adcde Mon Sep 17 00:00:00 2001 From: Cheeserolls Date: Fri, 29 May 2015 18:54:35 +0100 Subject: [PATCH] Fix bug - bushes turning into berry bushes too quickly --- src/main/java/biomesoplenty/common/block/BlockBOPPlant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/biomesoplenty/common/block/BlockBOPPlant.java b/src/main/java/biomesoplenty/common/block/BlockBOPPlant.java index 6c6e31244..a3843c70d 100644 --- a/src/main/java/biomesoplenty/common/block/BlockBOPPlant.java +++ b/src/main/java/biomesoplenty/common/block/BlockBOPPlant.java @@ -459,7 +459,7 @@ public class BlockBOPPlant extends BlockDecoration implements IShearable { case BUSH: // every now and then berries grow on a bush - if (rand.nextInt(80) > 0 && worldIn.getLightFromNeighbors(pos.up()) >= 9) + if (rand.nextInt(80) == 0 && worldIn.getLightFromNeighbors(pos.up()) >= 9) { worldIn.setBlockState(pos, paging.getVariantState(BOPPlants.BERRYBUSH)); }