The Find A Block Library assists in finding a specific block and keeping track of its location in a world efficiently.
For a more detailed description of the library mod visit the FAB Library Project Page.
For more information on the public functions the mod adds, see the Wiki.
repositories {
maven {
url = "https://github.com/ricksouth/serilum-forge-maven/raw/maven/"
}
}
dependencies {
runtimeOnly fg.deobf("com.natamus.fablibrary:fablibrary:VERSION")
compileOnly fg.deobf("com.natamus.fablibrary:fablibrary:VERSION")
}
dependencies {
runtimeOnly fg.deobf("com.natamus.fablibrary:fablibrary:1.15.2-1.0")
$ gradlew cleanEclipse eclipse --refresh-dependencies
4. Add the following lines to the bottom of mods.toml in your META-INF folder, replace YOURMODID with your mod's id:
[[dependencies.YOURMODID]]
modId="fablibrary"
mandatory=true
versionRange="[1.0,)"
ordering="NONE"
side="BOTH"