b5b6ea3381f06263f76b083ad4b95e0ca4681a18
Flan 


Server side land claiming mod for fabric
To use flan in your dependencies add the following snippet to your build.gradle
repositories {
maven {
name = "Flemmli97"
url "https://gitlab.com/api/v4/projects/21830712/packages/maven"
}
}
dependencies {
//Fabric==========
modCompileOnly("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}-api") {
transitive = false //Remove this if you want to have all those optional dependencies
}
modRuntime("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}") {
transitive = false //Remove this if you want to have all those optional dependencies
}
//Forge==========
compileOnly fg.deobf("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}-api")
runtimeOnly fg.deobf("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}")
}
Languages
Java
100%