Add missing replacements for mod.json
This commit is contained in:
parent
04b4ddd3d8
commit
6ddfa10903
2 changed files with 24 additions and 12 deletions
16
build.gradle
16
build.gradle
|
@ -57,10 +57,22 @@ dependencies {
|
|||
}
|
||||
|
||||
processResources {
|
||||
inputs.properties 'version': version, 'group': project.group
|
||||
inputs.property 'version', version
|
||||
inputs.property 'group', project.group
|
||||
inputs.property 'minecraft_version', libs.versions.minecraft.get()
|
||||
inputs.property 'trinkets_version', libs.versions.trinkets.get()
|
||||
inputs.property 'lib39_version', libs.versions.lib39.get()
|
||||
inputs.property 'emi_version', libs.versions.emi.get()
|
||||
|
||||
filesMatching('quilt.mod.json') {
|
||||
expand 'version': version, 'group': project.group
|
||||
expand (
|
||||
"version": version,
|
||||
"group": project.group,
|
||||
"minecraft_version": libs.versions.minecraft.get(),
|
||||
"trinkets_version": libs.versions.trinkets.get(),
|
||||
"lib39_version": libs.versions.lib39.get(),
|
||||
"emi_version": libs.versions.emi.get()
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -55,16 +55,6 @@
|
|||
}
|
||||
],
|
||||
"breaks": [
|
||||
{
|
||||
"id": "roughlyenoughitems",
|
||||
"versions": "*",
|
||||
"reason": "API constantly rewritten for no reason, arrogant mod author, features stolen from EMI."
|
||||
},
|
||||
{
|
||||
"id": "inventoryprofilesnext",
|
||||
"versions": "*",
|
||||
"reason": "Crashes with no intent to fix on their end."
|
||||
},
|
||||
{
|
||||
"id": "infinitory",
|
||||
"versions": "*",
|
||||
|
@ -84,6 +74,16 @@
|
|||
"id": "inventory_backpack",
|
||||
"versions": "*",
|
||||
"reason": "Infinite/Incompatible inventory mod."
|
||||
},
|
||||
{
|
||||
"id": "realistic-inventory",
|
||||
"versions": "*",
|
||||
"reason": "Infinite/Incompatible inventory mod."
|
||||
},
|
||||
{
|
||||
"id": "inventorymod",
|
||||
"versions": "*",
|
||||
"reason": "Infinite/Incompatible inventory mod."
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue