Merge remote-tracking branch 'remotes/origin/dev/0.2' into dev/0.2.1
commit
36750634eb
|
@ -86,9 +86,16 @@ public final class MixinRefmapHelper {
|
||||||
InputStreamReader inputStreamReader = new InputStreamReader(stream);
|
InputStreamReader inputStreamReader = new InputStreamReader(stream);
|
||||||
try {
|
try {
|
||||||
JsonObject json = GSON.fromJson(inputStreamReader, JsonObject.class);
|
JsonObject json = GSON.fromJson(inputStreamReader, JsonObject.class);
|
||||||
if (json != null && json.has("mixins") && json.get("mixins").isJsonArray()) {
|
|
||||||
if (!onlyWithoutRefmap || !json.has("refmap") || !json.has("minVersion")) {
|
if (json != null) {
|
||||||
mixinFilename.add(entry.getName());
|
boolean hasMixins = json.has("mixins") && json.get("mixins").isJsonArray();
|
||||||
|
boolean hasClient = json.has("client") && json.get("client").isJsonArray();
|
||||||
|
boolean hasServer = json.has("server") && json.get("server").isJsonArray();
|
||||||
|
|
||||||
|
if (json.has("package") && (hasMixins || hasClient || hasServer)) {
|
||||||
|
if (!onlyWithoutRefmap || !json.has("refmap") || !json.has("minVersion")) {
|
||||||
|
mixinFilename.add(entry.getName());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Reference in New Issue