SimpleHarvest
The SimpleHarvest mod introduces a convenient change to the harvesting process in Minecraft - now you can collect mature crops with a simple right-click. All mod settings are easily adjustable through a configuration JSON file.
Compatibility and Features
Starting from version 1.0.1-7 for Minecraft 1.9.4 and above, the mod is not required on the client side. The only difference when using only on the server is the absence of the player's arm swing animation after harvesting.
Standard Configuration
For Minecraft versions 1.13 and above (both Forge and Fabric), the following basic configuration is used. For versions 1.12 and below, refer to the documentation on GitHub.
{
"exhaustionPerHarvest": 0.005,
"additionalLogging": true,
"crops": [
{
"block": "minecraft:wheat",
"states": {
"age": "7"
}
},
{
"block": "minecraft:nether_wart",
"states": {
"age": "3"
}
},
{
"block": "minecraft:carrots",
"states": {
"age": "7"
}
},
{
"block": "minecraft:potatoes",
"states": {
"age": "7"
}
},
{
"block": "minecraft:beetroots",
"states": {
"age": "3"
}
}
]
}
Advanced Configuration
To support additional crops, the mod must identify corresponding seeds in the drop list. To add new seed types, use a data pack to define new seed items in the harvest:seeds item tag.
Frequently Asked Questions
Is the Fortune enchantment accounted for? Yes, the Fortune enchantment value is taken from the item in your main hand.
For Developers
If your crop requires special harvest handling, you can register a custom IReplantHandler through Harvest.CUSTOM_HANDLERS.