diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2023-10-15 15:08:49 +0300 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2023-10-15 15:08:49 +0300 |
commit | e4473aef5fa7e2f0f389ebafafa966aaaf491353 (patch) | |
tree | 13ab419958a82507a1df337e0e58a8aaf1ef6cc4 | |
parent | edfe42b5ac64f19979d42ba4ccc8f77ef36039a4 (diff) | |
download | LibGui-e4473aef5fa7e2f0f389ebafafa966aaaf491353.tar.gz LibGui-e4473aef5fa7e2f0f389ebafafa966aaaf491353.tar.bz2 LibGui-e4473aef5fa7e2f0f389ebafafa966aaaf491353.zip |
Fix missing resource loader dependency
Fixes #213.
-rw-r--r-- | build.gradle | 1 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 1 |
2 files changed, 2 insertions, 0 deletions
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" |