fix jij loading
All checks were successful
Publish to snapshot maven / build (push) Successful in 22s
All checks were successful
Publish to snapshot maven / build (push) Successful in 22s
This commit is contained in:
parent
400b892014
commit
f32d237a2d
|
@ -7,7 +7,7 @@ plugins {
|
|||
}
|
||||
|
||||
group = "dev.frogmc"
|
||||
version = "0.0.1-alpha.23"
|
||||
version = "0.0.1-alpha.24"
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
java
|
||||
id("dev.frogmc.phytotelma") version "0.0.1-alpha.18"
|
||||
id("dev.frogmc.phytotelma") version "0.0.1-alpha.19"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -66,14 +66,12 @@ public class ModUtil {
|
|||
private static Map<ModProperties, Collection<String>> getParentMods(Collection<ModProperties> mods) {
|
||||
Map<ModProperties, Collection<String>> children = new HashMap<>();
|
||||
for (ModProperties mod : mods) {
|
||||
List<List<UnmodifiableConfig>> entries = mod.extensions().get(BuiltinExtensions.INCLUDED_JARS);
|
||||
List<UnmodifiableConfig> entries = mod.extensions().get(BuiltinExtensions.INCLUDED_JARS);
|
||||
if (entries != null) {
|
||||
for (var jars : entries) {
|
||||
for (var jar : jars) {
|
||||
for (var jar : entries) {
|
||||
String id = jar.get("id");
|
||||
children.computeIfAbsent(mod, m -> new HashSet<>()).add(id);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
children.putIfAbsent(mod, Collections.emptySet());
|
||||
}
|
||||
|
|
|
@ -115,13 +115,12 @@ public class FrogModProvider implements ModProvider {
|
|||
if (opt.isPresent()) {
|
||||
ModProperties p = opt.get();
|
||||
modPaths.put(mod, p);
|
||||
List<List<UnmodifiableConfig>> entries = p.extensions().getOrDefault(BuiltinExtensions.INCLUDED_JARS, Collections.emptyList());
|
||||
List<UnmodifiableConfig> entries = p.extensions().getOrDefault(BuiltinExtensions.INCLUDED_JARS, Collections.emptyList());
|
||||
if (entries.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
try (FileSystem fs = FileSystems.newFileSystem(mod)) {
|
||||
for (List<UnmodifiableConfig> jars : entries) {
|
||||
for (UnmodifiableConfig jar : jars) {
|
||||
for (UnmodifiableConfig jar : entries) {
|
||||
Path path = fs.getPath(jar.get("path")).toAbsolutePath();
|
||||
Path extracted = jijCache.resolve((String) jar.get("id"));
|
||||
if (!Files.exists(extracted)) {
|
||||
|
@ -134,7 +133,6 @@ public class FrogModProvider implements ModProvider {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void preLaunch(Collection<ModProperties> mods) {
|
||||
|
|
Loading…
Reference in a new issue