Un-mixup the mixins.

This properly separates the forge and fabric mixins in the merged -mod jar.
By some miracle Forge was 'working' with the Fabric mixins, but this is probably safer overall.
This commit is contained in:
wizjany 2022-03-16 17:07:29 -04:00 committed by Madeline Miller
parent 59742162cb
commit b8d096ba99
No known key found for this signature in database
GPG Key ID: B8EA2E5693115D81
4 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@
"fabric-permissions-api-v0": "*"
},
"mixins": [
"worldedit.mixins.json"
"worldedit-fabric.mixins.json"
],
"accessWidener" : "worldedit.accesswidener"
}

View File

@ -1,7 +1,7 @@
{
"required": true,
"package": "com.sk89q.worldedit.forge.mixin",
"compatibilityLevel": "JAVA_17",
"compatibilityLevel": "JAVA_8",
"mixins": [
"MixinLevelChunkSetBlockHook"
],

View File

@ -15,7 +15,7 @@
from(zipTree({remapFabric.get().archiveFile}))
from(zipTree({project(":worldedit-forge").tasks.getByName("shadowJar").outputs.files.singleFile}))
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
duplicatesStrategy = DuplicatesStrategy.WARN
archiveClassifier.set("dist")
}