Go to file
2022-11-24 20:12:24 +00:00
.github/ISSUE_TEMPLATE updating issue template 2022-02-16 12:54:14 +01:00
common feat: add bluemap support 2022-11-24 14:26:26 +00:00
fabric Merge branch 'Flemmli97:1.19' into feat/bluemap_integration 2022-11-24 20:12:24 +00:00
forge Merge branch 'Flemmli97:1.19' into feat/bluemap_integration 2022-11-24 20:12:24 +00:00
gradle/wrapper gradle version bump 2022-07-01 19:06:15 +02:00
.gitignore clean ups 2020-08-23 15:16:26 +02:00
build.gradle build.gradle update 2022-09-12 19:12:32 +02:00
Changelog.md check for version of fabric permission api 2022-09-12 15:52:04 +02:00
gradle.properties feat: add bluemap support 2022-11-24 14:26:26 +00:00
gradlew initial commit 2020-08-23 14:52:36 +02:00
gradlew.bat initial commit 2020-08-23 14:52:36 +02:00
README.md Update README.md 2022-02-03 16:03:06 +01:00
settings.gradle port to 1.18 2021-12-03 22:37:35 +01:00

Flan Discord

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

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}")
}