- Card foiling now defaults to modern foil style if the card edition file does not specify the foil type (this re-enables random foiling).

This commit is contained in:
Agetian
2013-06-30 16:12:23 +00:00
parent b90694142c
commit 00d76439b2

View File

@@ -321,7 +321,7 @@ public final class CardEdition implements Comparable<CardEdition> { // immutable
}
res.type = enumType;
switch(section.get("foil", "notsupported").toLowerCase()) {
switch(section.get("foil", "newstyle").toLowerCase()) {
case "notsupported":
res.foilType = FoilType.NOT_SUPPORTED;
break;