how did a format change make the test fail
This commit is contained in:
@@ -744,8 +744,8 @@ public class Mods implements Loadable{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Seq<String> left = currentRun.keys().toSeq();
|
|
||||||
if(contentOrder != null){
|
if(contentOrder != null){
|
||||||
|
Seq<String> left = currentRun.keys().toSeq();
|
||||||
for (String contentName : contentOrder){
|
for (String contentName : contentOrder){
|
||||||
LoadRun run = currentRun.get(contentName);
|
LoadRun run = currentRun.get(contentName);
|
||||||
if(run != null){
|
if(run != null){
|
||||||
@@ -755,9 +755,10 @@ public class Mods implements Loadable{
|
|||||||
Log.warn("Cannot find content defined in contentOrder: @", contentName);
|
Log.warn("Cannot find content defined in contentOrder: @", contentName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
runs.addAll(left.map(name -> currentRun.get(name)).sort());
|
||||||
|
}else{
|
||||||
|
runs.addAll(currentRun.values().toSeq().sort());
|
||||||
}
|
}
|
||||||
|
|
||||||
runs.addAll(left.map(name -> currentRun.get(name)).sort());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for(LoadRun l : runs){
|
for(LoadRun l : runs){
|
||||||
|
|||||||
Reference in New Issue
Block a user