diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityMossGenerator.java b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityMossGenerator.java index e28175c0..772f0d07 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityMossGenerator.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityMossGenerator.java @@ -50,7 +50,7 @@ public class TileEntityMossGenerator extends TileEntityImpl implements ITickable BlockState state = this.world.getBlockState(offset); BlockState result = NaturesAuraAPI.BOTANIST_PICKAXE_CONVERSIONS.inverse().get(state); - int toAdd = 7500; + int toAdd = 4000; if (this.canGenerateRightNow(35, toAdd)) { while (toAdd > 0) { BlockPos spot = IAuraChunk.getLowestSpot(this.world, this.pos, 35, this.pos);