Go to file
2021-12-03 22:43:02 +01:00
.github/ISSUE_TEMPLATE Update issue templates 2021-06-14 16:18:14 +02:00
common port to 1.18 2021-12-03 22:37:35 +01:00
fabric port to 1.18 2021-12-03 22:37:35 +01:00
forge port to 1.18 2021-12-03 22:37:35 +01:00
gradle/wrapper port to 1.18 2021-12-03 22:37:35 +01:00
.gitignore clean ups 2020-08-23 15:16:26 +02:00
build.gradle port to 1.18 2021-12-03 22:37:35 +01:00
Changelog.md split ignoredBlocks config into one for breaking and one for right clicking 2021-11-11 01:28:15 +01:00
gradle.properties port to 1.18 2021-12-03 22:37:35 +01: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 2021-12-03 22:43:02 +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

To use flan in your dependencies add the following snippet to your build.gradle (1.16 version. see 1.17 branch for that)

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