mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-30 05:05:20 -05:00
Some minor bug fixes for iface injection & refmaps in mixins for quilt. (#81)
This commit is contained in:
@@ -230,7 +230,7 @@ public class InterfaceInjectionProcessor implements JarProcessor, GenerateSource
|
||||
|
||||
try {
|
||||
quiltModJson = sourceSet.getResources()
|
||||
.matching(patternFilterable -> patternFilterable.include("quilt.mods.json"))
|
||||
.matching(patternFilterable -> patternFilterable.include("quilt.mod.json"))
|
||||
.getSingleFile();
|
||||
|
||||
final String jsonString;
|
||||
|
||||
@@ -252,7 +252,8 @@ public abstract class RemapJarTask extends AbstractRemapJarTask {
|
||||
|
||||
if (allMixinConfigs == null && getReadMixinConfigsFromManifest().get()) {
|
||||
allMixinConfigs = readMixinConfigsFromManifest();
|
||||
} else {
|
||||
}
|
||||
if (allMixinConfigs == null) {
|
||||
if (extension.getPlatform().get() == ModPlatform.QUILT) {
|
||||
getProject().getLogger().warn("Could not find quilt.mod.json file in: " + getInputFile().getAsFile().get().getName());
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user