Skip to content

Commit

Permalink
Hopefully fix on quilt 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed May 11, 2024
1 parent 5c59065 commit dfe8e00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ modsDotGroovy {
multiloader {
forge = [project(':neoforge')]
fabric = [project(':fabriquilt')]
quilt = [project(':fabriquilt')]
quilt = []
}
}

Expand Down
17 changes: 2 additions & 15 deletions common/src/main/resources/mods.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,13 @@

import modsdotgroovy.Dependency

/*
* Copyright (C) 2023 Luke Bemish and contributors
* SPDX-License-Identifier: LGPL-3.0-or-later
*/

ModsDotGroovy.make {
modLoader = 'javafml'
loaderVersion = '[1,)'

license = 'LGPL-3.0-or-later'
issueTrackerUrl = 'https://github.com/lukebemishprojects/ExcavatedVariants/issues'

def isFabriQuilt = platform == Platform.FABRIC || platform == Platform.QUILT

mod {
modId = this.buildProperties['mod_id']
displayName = this.buildProperties['mod_name']
Expand All @@ -38,7 +31,7 @@ ModsDotGroovy.make {
neoforge = ">=${this.libs.versions.neoforge}"
}

if (isFabriQuilt) {
onFabric {
mod 'fabricloader', {
versionRange = ">=${this.libs.versions.fabric.loader}"
}
Expand All @@ -47,12 +40,6 @@ ModsDotGroovy.make {
}
}

onQuilt {
mod 'quilt_loader', {
versionRange = ">=${this.libs.versions.quilt.loader}"
}
}

mod('dynamic_asset_generator') {
versionRange = ">=${this.libs.versions.dynassetgen}"
}
Expand Down Expand Up @@ -89,7 +76,7 @@ ModsDotGroovy.make {
['config':'mixin.excavated_variants_neoforge.json']
]
}
if (isFabriQuilt) {
onFabric {
mixin = [
'mixin.excavated_variants.json',
'mixin.excavated_variants_fabriquilt.json'
Expand Down

0 comments on commit dfe8e00

Please sign in to comment.