From e4473aef5fa7e2f0f389ebafafa966aaaf491353 Mon Sep 17 00:00:00 2001 From: Juuz <6596629+Juuxel@users.noreply.github.com> Date: Sun, 15 Oct 2023 15:08:49 +0300 Subject: Fix missing resource loader dependency Fixes #213. --- build.gradle | 1 + src/main/resources/fabric.mod.json | 1 + 2 files changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 6d02a2b..f4d1bd9 100644 --- a/build.gradle +++ b/build.gradle @@ -75,6 +75,7 @@ dependencies { 'fabric-lifecycle-events-v1': false, 'fabric-networking-api-v1': true, 'fabric-rendering-v1': false, + 'fabric-resource-loader-v0': false, ] fabricApiModules.forEach { module, api -> def dependency = fabricApi.module(module, project.fabric_version) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 9a76f20..7870abc 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -30,6 +30,7 @@ "fabric-lifecycle-events-v1": "^2.0.2", "fabric-networking-api-v1": "^3.0.5", "fabric-rendering-v1": "^3.0.6", + "fabric-resource-loader-v0": "*", "minecraft": ">=1.20.2", "jankson": "^6.0.0", "libninepatch": "^1.2.0" -- cgit