From f7272e403cc45e46d31b7664e1bb89b6f4e23456 Mon Sep 17 00:00:00 2001 From: Camotoy <20743703+Camotoy@users.noreply.github.com> Date: Fri, 4 Mar 2022 21:26:04 -0500 Subject: [PATCH] Update Floodgate-Fabric for 1.18.2 --- build.gradle | 3 ++- gradle.properties | 2 +- src/main/resources/fabric.mod.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index e98c0825..58fb7a34 100644 --- a/build.gradle +++ b/build.gradle @@ -35,13 +35,14 @@ dependencies { shadow("org.geysermc.floodgate:common:${project.mod_version}") { exclude group: 'com.google.guava', module: "guava" exclude group: 'com.google.code.gson', module: "gson" + exclude group: 'net.kyori', module: '*' // Let Adventure-Platform provide its desired Adventure version } include(modImplementation('cloud.commandframework:cloud-fabric:1.5.0') { because "Commands library implementation for Fabric" }) - include(modImplementation('net.kyori:adventure-platform-fabric:5.0.0') { + include(modImplementation('net.kyori:adventure-platform-fabric:5.2.0') { because "Chat library implementation for Fabric that includes methods for communicating with the server" // Thanks to zml for this fix // The package modifies Brigadier which causes a LinkageError at runtime if included diff --git a/gradle.properties b/gradle.properties index 89e73792..4d8c440b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://modmuss50.me/fabric.html -minecraft_version=1.18 +minecraft_version=1.18.2 loader_version=0.12.6 # Mod Properties mod_version=2.1.0-SNAPSHOT diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 3cea4ae6..dd7781f5 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -26,6 +26,6 @@ "depends": { "fabricloader": ">=0.11.3", "fabric": "*", - "minecraft": ">=1.17.1" + "minecraft": ">=1.18.2" } }