flan/README.md

31 lines
1.5 KiB
Markdown

# Flan [![](http://cf.way2muchnoise.eu/full_404578_Fabric_%20.svg)![](http://cf.way2muchnoise.eu/versions/404578.svg)](https://www.curseforge.com/minecraft/mc-mods/flan) [![](http://cf.way2muchnoise.eu/full_493246_Forge_%20.svg)![](http://cf.way2muchnoise.eu/versions/493246.svg)](https://www.curseforge.com/minecraft/mc-mods/flan-forge) [![Discord](https://img.shields.io/discord/790631506313478155?color=0a48c4&label=discord)](https://discord.gg/8Cx26tfWNs)
Server side land claiming mod for fabric.
You can now PR translations into the mod. Translations should go under `common/src/main/resources/data/flan/lang`
To use flan in your dependencies add the following snippet to your build.gradle
```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}")
}
```