Go to file
2021-09-04 15:46:16 +02:00
.github/ISSUE_TEMPLATE Update issue templates 2021-06-14 16:18:14 +02:00
common remove need of claimblocks when in admin mode 2021-09-02 14:16:25 +02:00
fabric bind tracker to server instead of static instance 2021-08-13 11:40:24 +02:00
forge bind tracker to server instead of static instance 2021-08-13 11:40:24 +02:00
gradle/wrapper architectury 2021-06-11 20:33:10 +02:00
.gitignore clean ups 2020-08-23 15:16:26 +02:00
build.gradle changelog + version bump 2021-08-13 11:21:38 +02:00
Changelog.md changelog + version bump 2021-09-02 14:16:34 +02:00
gradle.properties changelog + version bump 2021-09-02 14:16:34 +02: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-09-04 15:46:16 +02:00
settings.gradle update build.gradle 2021-06-13 21:02:33 +02: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 {
    modImplementation "io.github.flemmli97:flan:${minecraft_version}-${flan_version}" // for version 1.5.0 below
    
    //Fabric==========
    modImplementation "io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}" // for version [1.5.0,1.6.0)
    
    //Use the following lines for 1.6.0+
    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==========
    compile fg.deobf("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}") // for version [1.5.0,1.6.0)
    
    //Use the following lines for 1.6.0+
    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}")
}