For the official Forge version of the mod's GitHub, please go here.
Farmer's Delight is a mod that gently expands upon farming and cooking in Minecraft.
Using a simple cooking system and a few familiar ingredients, you'll be able to prepare a wide variety of hearty meals: from sandwiches to salads and stews, from beautiful desserts to mouth-watering feasts, no ingredient will be left behind in your kitchen!
It also introduces a rich set of utilities: a way to improve the very soil your crops grow in, a brand new kind of tool to scavenge resources with, cute decorations for your builds, and many blocks and items to help you on your adventure!
It's time to farm a little bit of everything!
Thank you for visiting the repository! If you'd like to contribute with the mod, feel free to check the wiki for more details, or take a look at the issues page!
I am open to constructive feedback about the mod's code: if you spot any glaring mistakes in my code, and/or you know a better way to accomplish something, feel free to open an issue/PR about it. Any help is appreciated!
Differences between the two codebases.
Addons/Integration support for both ports.
Starting from 2.0.7, Farmer's Delight Refabricated can be depended on within development environments through the Greenhouse Maven (https://repo.greenhouse.house/).
To do so, assuming you have a field in your gradle.properties named fdrf_version
.
repositories {
maven {
name = "Greenhouse Maven"
url = 'https://repo.greenhouse.house/releases/'
}
maven { url "https://mvn.devos.one/releases/" } // Porting Lib
maven {
url "https://maven.jamieswhiteshirt.com/libs-release" // Reach Entity Attributes (Required by Porting Lib)
content {
includeGroup "com.jamieswhiteshirt"
}
}
maven {
url "https://jitpack.io/" // Fabric ASM
content {
excludeGroup "io.github.fabricators_of_create"
}
}
}
dependencies {
modImplementation("vectorwing:FarmersDelight:${fdrf_version}") {
exclude(group: "net.fabricmc")
}
}
Replace the x
s with the current version number.
fdrf_version=1.20.1-x.x.x+refabricated