diff options
| author | Xander <xander@isxander.dev> | 2022-12-09 16:31:25 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-09 16:31:25 +0000 |
| commit | e4856a17133b0567d09cb6db3821674491d57e64 (patch) | |
| tree | 0c59597708b3ea9f402ba119490537b5c18fdb93 /src/main/resources | |
| parent | e1f6d190d862dd86c251fdd5726efe99f8ec1baf (diff) | |
| parent | 49ff470de36e719d5b963de405de891eca2b69d1 (diff) | |
| download | YetAnotherConfigLib-e4856a17133b0567d09cb6db3821674491d57e64.tar.gz YetAnotherConfigLib-e4856a17133b0567d09cb6db3821674491d57e64.tar.bz2 YetAnotherConfigLib-e4856a17133b0567d09cb6db3821674491d57e64.zip | |
Merge pull request #38 from isXander/update/1.19.3
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/fabric.mod.json | 12 | ||||
| -rw-r--r-- | src/main/resources/yet-another-config-lib.mixins.json | 11 |
2 files changed, 8 insertions, 15 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index fc5a14f..90889a0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -14,17 +14,21 @@ }, "icon": "yacl-128x.png", "license": "LGPL-3.0-or-later", - "environment": "client", + "environment": "*", "entrypoints": { }, "depends": { "fabricloader": ">=0.14.0", - "minecraft": "1.19.x", - "java": ">=17" + "minecraft": "~1.19.3-beta.1", + "java": ">=17", + "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" - ] -} |
