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"
|
group = "dev.frogmc"
|
||||||
version = "0.0.1-alpha.23"
|
version = "0.0.1-alpha.24"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven {
|
maven {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
id("dev.frogmc.phytotelma") version "0.0.1-alpha.18"
|
id("dev.frogmc.phytotelma") version "0.0.1-alpha.19"
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -66,14 +66,12 @@ public class ModUtil {
|
||||||
private static Map<ModProperties, Collection<String>> getParentMods(Collection<ModProperties> mods) {
|
private static Map<ModProperties, Collection<String>> getParentMods(Collection<ModProperties> mods) {
|
||||||
Map<ModProperties, Collection<String>> children = new HashMap<>();
|
Map<ModProperties, Collection<String>> children = new HashMap<>();
|
||||||
for (ModProperties mod : mods) {
|
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) {
|
if (entries != null) {
|
||||||
for (var jars : entries) {
|
for (var jar : entries) {
|
||||||
for (var jar : jars) {
|
|
||||||
String id = jar.get("id");
|
String id = jar.get("id");
|
||||||
children.computeIfAbsent(mod, m -> new HashSet<>()).add(id);
|
children.computeIfAbsent(mod, m -> new HashSet<>()).add(id);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
children.putIfAbsent(mod, Collections.emptySet());
|
children.putIfAbsent(mod, Collections.emptySet());
|
||||||
}
|
}
|
||||||
|
|
|
@ -115,13 +115,12 @@ public class FrogModProvider implements ModProvider {
|
||||||
if (opt.isPresent()) {
|
if (opt.isPresent()) {
|
||||||
ModProperties p = opt.get();
|
ModProperties p = opt.get();
|
||||||
modPaths.put(mod, p);
|
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()) {
|
if (entries.isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try (FileSystem fs = FileSystems.newFileSystem(mod)) {
|
try (FileSystem fs = FileSystems.newFileSystem(mod)) {
|
||||||
for (List<UnmodifiableConfig> jars : entries) {
|
for (UnmodifiableConfig jar : entries) {
|
||||||
for (UnmodifiableConfig jar : jars) {
|
|
||||||
Path path = fs.getPath(jar.get("path")).toAbsolutePath();
|
Path path = fs.getPath(jar.get("path")).toAbsolutePath();
|
||||||
Path extracted = jijCache.resolve((String) jar.get("id"));
|
Path extracted = jijCache.resolve((String) jar.get("id"));
|
||||||
if (!Files.exists(extracted)) {
|
if (!Files.exists(extracted)) {
|
||||||
|
@ -134,7 +133,6 @@ public class FrogModProvider implements ModProvider {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void preLaunch(Collection<ModProperties> mods) {
|
public void preLaunch(Collection<ModProperties> mods) {
|
||||||
|
|
Loading…
Reference in a new issue