aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorisXander <xandersmith2008@gmail.com>2022-11-27 18:17:36 +0000
committerisXander <xandersmith2008@gmail.com>2022-11-27 18:17:36 +0000
commitd163b9128d760e53e34fd6c08dbf782fa3d50c51 (patch)
treeb9ea79bb99bf52ea7de9d059cc05900270ff88d4 /src/main/resources
parentc26d3a89caae20f1a91898202d91de8dc90da5ad (diff)
downloadYetAnotherConfigLib-d163b9128d760e53e34fd6c08dbf782fa3d50c51.tar.gz
YetAnotherConfigLib-d163b9128d760e53e34fd6c08dbf782fa3d50c51.tar.bz2
YetAnotherConfigLib-d163b9128d760e53e34fd6c08dbf782fa3d50c51.zip
split sourcesets
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/fabric.mod.json5
-rw-r--r--src/main/resources/yet-another-config-lib.mixins.json11
2 files changed, 4 insertions, 12 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index 234a281..0bd51c5 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -25,7 +25,10 @@
"fabric-resource-loader-v0": "*"
},
"mixins": [
- "yet-another-config-lib.mixins.json"
+ {
+ "config": "yet-another-config-lib.client.mixins.json",
+ "environment": "client"
+ }
],
"accessWidener": "yacl.accesswidener",
"custom": {
diff --git a/src/main/resources/yet-another-config-lib.mixins.json b/src/main/resources/yet-another-config-lib.mixins.json
deleted file mode 100644
index cb96c48..0000000
--- a/src/main/resources/yet-another-config-lib.mixins.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "required": true,
- "package": "dev.isxander.yacl.mixin",
- "compatibilityLevel": "JAVA_17",
- "injectors": {
- "defaultRequire": 1
- },
- "client": [
- "SimpleOptionAccessor"
- ]
-}