From 00d76439b2553cae855848bd9594205d9587c157 Mon Sep 17 00:00:00 2001 From: Agetian Date: Sun, 30 Jun 2013 16:12:23 +0000 Subject: [PATCH] - Card foiling now defaults to modern foil style if the card edition file does not specify the foil type (this re-enables random foiling). --- src/main/java/forge/card/CardEdition.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/forge/card/CardEdition.java b/src/main/java/forge/card/CardEdition.java index 02d9465ee83..9ae764f9198 100644 --- a/src/main/java/forge/card/CardEdition.java +++ b/src/main/java/forge/card/CardEdition.java @@ -321,7 +321,7 @@ public final class CardEdition implements Comparable { // immutable } res.type = enumType; - switch(section.get("foil", "notsupported").toLowerCase()) { + switch(section.get("foil", "newstyle").toLowerCase()) { case "notsupported": res.foilType = FoilType.NOT_SUPPORTED; break;