## Summary
I'd like to suggest extending the `AutoFarm` hack to support harvesting **Sweet Berry Bushes** (`Blocks.SWEET_BERRY_BUSH`). These bushes are a renewable crop introduced in Minecraft 1.14 and function differently than most crops, making them a valuable addition to the AutoFarm automation system.
---
## Details
- Sweet Berry Bushes grow through four stages (AGE 0–3).
- Only at AGE 3 can berries be harvested.
- Once harvested, the bush remains and regrows berries over time — **no replanting is needed**.
- This means AutoFarm should:
- Integration involves:
Adding `Blocks.SWEET_BERRY_BUSH` → `Items.SWEET_BERRIES` in the `seeds` map
Extending `shouldBeHarvested()` to check for AGE 3
Skipping replanting logic for that block type
---
## Why It's Useful
- Encourages automated food harvesting in taiga biomes or player berry farms
- Complements existing crop logic like wheat, carrots, and cocoa beans
- Adds more value and completeness to AutoFarm for survival users
---
## References
- Minecraft Wiki - Sweet Berries
- Added in Minecraft Java Edition 1.14
- Similar to cocoa in terms of partial maturity stages
---
## Implementation Notes
I’ve already prototyped this and can submit a PR if it’s welcomed! The patch is small, clean, and doesn't affect any other crop logic.
Let me know what you think!