Skip to content

Commit 49f68be

Browse files
committed
Closes #6790
1 parent 88cfb10 commit 49f68be

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

core/src/mindustry/mod/Mods.java

+7-16
Original file line numberDiff line numberDiff line change
@@ -476,13 +476,7 @@ public void load(){
476476
ModMeta meta = null;
477477

478478
try{
479-
Fi zip = file.isDirectory() ? file : new ZipFi(file);
480-
481-
if(zip.list().length == 1 && zip.list()[0].isDirectory()){
482-
zip = zip.list()[0];
483-
}
484-
485-
meta = findMeta(zip);
479+
meta = findMeta(resolveRoot(file.isDirectory() ? file : new ZipFi(file)));
486480
}catch(Throwable ignored){
487481
}
488482

@@ -507,7 +501,7 @@ public void load(){
507501
if(steam) mod.addSteamID(file.name());
508502
}catch(Throwable e){
509503
if(e instanceof ClassNotFoundException && e.getMessage().contains("mindustry.plugin.Plugin")){
510-
Log.info("Plugin '@' is outdated and needs to be ported to 6.0! Update its main class to inherit from 'mindustry.mod.Plugin'. See https://mindustrygame.github.io/wiki/modding/6-migrationv6/", file.name());
504+
Log.warn("Plugin '@' is outdated and needs to be ported to v7! Update its main class to inherit from 'mindustry.mod.Plugin'.", file.name());
511505
}else if(steam){
512506
Log.err("Failed to load mod workshop file @. Skipping.", file);
513507
Log.err(e);
@@ -935,10 +929,10 @@ private boolean resolve(String element, ModResolutionContext context){
935929
return true;
936930
}
937931

938-
/** Loads a mod file+meta, but does not add it to the list.
939-
* Note that directories can be loaded as mods. */
940-
private LoadedMod loadMod(Fi sourceFile) throws Exception{
941-
return loadMod(sourceFile, false, true);
932+
private Fi resolveRoot(Fi fi){
933+
if(OS.isMac && (!(fi instanceof ZipFi))) fi.child(".DS_Store").delete();
934+
Fi[] files = fi.list();
935+
return files.length == 1 && files[0].isDirectory() ? files[0] : fi;
942936
}
943937

944938
/** Loads a mod file+meta, but does not add it to the list.
@@ -949,10 +943,7 @@ private LoadedMod loadMod(Fi sourceFile, boolean overwrite, boolean initialize)
949943
ZipFi rootZip = null;
950944

951945
try{
952-
Fi zip = sourceFile.isDirectory() ? sourceFile : (rootZip = new ZipFi(sourceFile));
953-
if(zip.list().length == 1 && zip.list()[0].isDirectory()){
954-
zip = zip.list()[0];
955-
}
946+
Fi zip = resolveRoot(sourceFile.isDirectory() ? sourceFile : (rootZip = new ZipFi(sourceFile)));
956947

957948
ModMeta meta = findMeta(zip);
958949

0 commit comments

Comments
 (0)