mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2024-11-27 04:00:48 +08:00
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:
parent
59742162cb
commit
b8d096ba99
@ -39,7 +39,7 @@
|
||||
"fabric-permissions-api-v0": "*"
|
||||
},
|
||||
"mixins": [
|
||||
"worldedit.mixins.json"
|
||||
"worldedit-fabric.mixins.json"
|
||||
],
|
||||
"accessWidener" : "worldedit.accesswidener"
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "com.sk89q.worldedit.forge.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"mixins": [
|
||||
"MixinLevelChunkSetBlockHook"
|
||||
],
|
@ -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")
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user