Go to file
2021-07-21 00:35:19 +02:00
.github/ISSUE_TEMPLATE Update issue templates 2021-06-14 16:18:14 +02:00
common fix typo in lang file fix #76 2021-07-13 12:49:58 +02:00
fabric add scoreboard stuff for tracking 2021-07-02 20:01:27 +02:00
forge add lightning permission closes #72 2021-07-02 17:43:12 +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 remove debug 2021-06-21 14:00:50 +02:00
Changelog.txt changelog and version bump 2021-07-13 13:12:16 +02:00
gradle.properties changelog and version bump 2021-07-13 13:12:16 +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-07-21 00:35:19 +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

repositories {
    maven {
        name = "Flemmli97"
        url "https://gitlab.com/api/v4/projects/21830712/packages/maven"
    }
}

dependencies {
    modImplementation "io.github.flemmli97:flan:${flan_version}-${minecraft_version}" // for version 1.5.0 below
    
    //Fabric==========
    modImplementation "io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}" // for version 1.5.0 and up
    
    //Use the following lines for 1.6.0+
    modCompileOnly('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}-api') {
		transitive = false //Remove this if you want to have all those optional dependencies
	}
    modRuntime('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}') {
		transitive = false //Remove this if you want to have all those optional dependencies
	}
    
    //Forge==========
    compile fg.deobf("io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}") // for version 1.5.0 and up
    
    //Use the following lines for 1.6.0+
    compileOnly fg.deobf('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}-api')
    runtimeOnly fg.deobf('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}')
}