From 57f6f72d990235f818763ccbc537f0ea2f1bef92 Mon Sep 17 00:00:00 2001 From: Joseph Burton Date: Tue, 25 Aug 2020 08:14:06 +0100 Subject: [PATCH 1/2] Add mojmap option --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 6baf467..d3ca533 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.4-SNAPSHOT' + id 'fabric-loom' version '0.5-SNAPSHOT' id 'maven-publish' } @@ -14,6 +14,8 @@ dependencies { //to change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" + // to use Mojang's official mappings, comment the above line and uncomment below. Use at your own risk. + //mappings "com.mojang.minecraft:mappings:${project.minecraft_version}" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" // Fabric API. This is technically optional, but you probably want it anyway. -- 2.39.5 From edccaf8d906af696539b779bcd5f5bb23fbd0e81 Mon Sep 17 00:00:00 2001 From: Joseph Burton Date: Tue, 25 Aug 2020 16:20:12 +0100 Subject: [PATCH 2/2] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d3ca533..d34df4f 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" // to use Mojang's official mappings, comment the above line and uncomment below. Use at your own risk. - //mappings "com.mojang.minecraft:mappings:${project.minecraft_version}" + //mappings minecraft.officialMojangMappings() modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" // Fabric API. This is technically optional, but you probably want it anyway. -- 2.39.5