Ryan Fox 222c8b752c
Fabric 1.20.2 (untested)
I just did the minimum to compile it.
2023-10-28 18:10:32 -07:00
2023-10-28 18:10:32 -07:00
2023-06-30 00:23:04 -07:00
2023-05-22 00:46:24 +02:00
2023-06-30 21:54:33 -07:00
2020-08-23 15:16:26 +02:00
2023-06-30 00:23:04 -07:00
2023-05-15 00:37:45 +02:00
2023-10-28 18:10:32 -07:00
2023-06-30 21:54:33 -07:00
2023-06-30 21:54:33 -07:00
2022-02-03 16:03:06 +01:00
2023-06-12 18:55:25 -07: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}")
}
Description
No description provided
Readme 1.3 MiB
Languages
Java 100%