From 3c9d0bb91b650ec05192566607157026663be484 Mon Sep 17 00:00:00 2001 From: JFronny <33260128+JFronny@users.noreply.github.com> Date: Wed, 26 Aug 2020 15:21:49 +0200 Subject: [PATCH] 1.16.2 --- build.gradle | 13 ++++++++----- gradle.properties | 8 ++++---- src/main/resources/fabric.mod.json | 2 +- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index d03ed1f..d9fdbcc 100644 --- a/build.gradle +++ b/build.gradle @@ -21,13 +21,16 @@ dependencies { // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. // You may need to force-disable transitiveness on them. - modApi "me.sargunvohra.mcmods:autoconfig1u:3.2.0-unstable" + modCompile "me.sargunvohra.mcmods:autoconfig1u:3.2.0-unstable" include "me.sargunvohra.mcmods:autoconfig1u:3.2.0-unstable" - modApi "me.shedaniel.cloth:config-2:4.6.0" - include "me.shedaniel.cloth:config-2:4.6.0" + modApi ("me.shedaniel.cloth:config-2:4.7.0-unstable") { + transitive = false + } + include ("me.shedaniel.cloth:config-2:4.7.0-unstable") { + transitive = false + } - - modImplementation "io.github.prospector:modmenu:1.14.5+build.30" + modImplementation "io.github.prospector:modmenu:1.14.6+build.31" } processResources { diff --git a/gradle.properties b/gradle.properties index c951368..b7e1534 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,13 +2,13 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://modmuss50.me/fabric.html -minecraft_version=1.16.1 -yarn_mappings=1.16.1+build.21 -loader_version=0.9.0+build.204 +minecraft_version=1.16.2 +yarn_mappings=1.16.2+build.21 +loader_version=0.9.2+build.206 # Mod Properties mod_version=1.0 maven_group=io.gitlab.jfronny.breakme archives_base_name=breakme # Dependencies # check this on https://modmuss50.me/fabric.html -fabric_version=0.16.2+build.385-1.16.1 +fabric_version=0.19.0+build.398-1.16 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 42b0968..8df321c 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -28,6 +28,6 @@ "depends": { "fabricloader": ">=0.9.0+build.204", "fabric": "*", - "minecraft": "1.16.1" + "minecraft": "1.16.2" } }