aboutsummaryrefslogtreecommitdiff
path: root/fabric/src/main/resources
diff options
context:
space:
mode:
authorisXander <xandersmith2008@gmail.com>2023-09-24 15:48:15 +0100
committerisXander <xandersmith2008@gmail.com>2023-09-24 15:48:15 +0100
commitd2b67633c1d3ca0c46682b05955dafafd3597f1d (patch)
tree7e7ae123d0cb945a45eb940a12eb03a4d4e04d80 /fabric/src/main/resources
parent554646dbd857e2fab1be8339ce8d0231ef2dbb4c (diff)
downloadYetAnotherConfigLib-d2b67633c1d3ca0c46682b05955dafafd3597f1d.tar.gz
YetAnotherConfigLib-d2b67633c1d3ca0c46682b05955dafafd3597f1d.tar.bz2
YetAnotherConfigLib-d2b67633c1d3ca0c46682b05955dafafd3597f1d.zip
1.20.2
Diffstat (limited to 'fabric/src/main/resources')
-rw-r--r--fabric/src/main/resources/fabric.mod.json3
-rw-r--r--fabric/src/main/resources/yacl-fabric.mixins.json11
2 files changed, 13 insertions, 1 deletions
diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json
index 21a6336..f74fcd5 100644
--- a/fabric/src/main/resources/fabric.mod.json
+++ b/fabric/src/main/resources/fabric.mod.json
@@ -22,7 +22,8 @@
"fabric-resource-loader-v0": "*"
},
"mixins": [
- "yacl.mixins.json"
+ "yacl.mixins.json",
+ "yacl-fabric.mixins.json"
],
"custom": {
"modmenu": {
diff --git a/fabric/src/main/resources/yacl-fabric.mixins.json b/fabric/src/main/resources/yacl-fabric.mixins.json
new file mode 100644
index 0000000..5374dd3
--- /dev/null
+++ b/fabric/src/main/resources/yacl-fabric.mixins.json
@@ -0,0 +1,11 @@
+{
+ "required": true,
+ "package": "dev.isxander.yacl3.fabric.mixin",
+ "compatibilityLevel": "JAVA_17",
+ "injectors": {
+ "defaultRequire": 1
+ },
+ "client": [
+ "ContainerEventHandlerMixin"
+ ]
+}