From ed99e240eca9143585476abd80dbc0178dcc7231 Mon Sep 17 00:00:00 2001 From: Jonas Herzig Date: Mon, 28 Jun 2021 19:03:49 +0200 Subject: [PATCH] Bundle missing transitive fabric-api dependency --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 16f2279f..a22d6932 100644 --- a/build.gradle +++ b/build.gradle @@ -273,6 +273,9 @@ dependencies { if (mcVersion >= 11600) { fabricApiModules.add("key-binding-api-v1") } + if (mcVersion >= 11700) { + fabricApiModules.add("networking-api-v1") + } fabricApiModules.each { module -> modImplementation fabricApi.module("fabric-$module", fabricApiVersion) include fabricApi.module("fabric-$module", fabricApiVersion)