Rearranging files to place the old starter defs in a deprecated folder

This commit is contained in:
Christian 'ketura' McCarty
2022-09-06 03:59:27 -05:00
parent 174281cda7
commit c3a57f3e11
100 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,6 @@
{
name: FotR - League Starter
type: pack
items: [
1xFOTR League Random Starters
2xFotR - Booster
@@ -26,6 +25,7 @@
1x0_10
]
}
{
name: FOTR League Random Starters
type: random

View File

@@ -19,7 +19,7 @@ public class FixedPackBox implements PackBox {
}
public static FixedPackBox LoadFromFile(String packName) throws IOException {
var lines = new BufferedReader(new InputStreamReader(AppConfig.getResourceStream("product/" + packName + ".pack")))
var lines = new BufferedReader(new InputStreamReader(AppConfig.getResourceStream("product/old/" + packName + ".pack")))
.lines().toList();
return LoadFromArray(lines);
}