Filp cards also require a separate image for their changed state

This commit is contained in:
Maxmtg
2013-03-20 22:46:21 +00:00
parent 3006c71f9a
commit 4034544216

View File

@@ -265,7 +265,8 @@ public class ImageCache {
}
public static boolean hasBackFacePicture(CardPrinted cp) {
return cp.getRules().getSplitType() == CardSplitType.Transform; // do we take other image for flipped cards?
CardSplitType cst = cp.getRules().getSplitType();
return cst == CardSplitType.Transform || cst == CardSplitType.Flip;
}
public static String getSetFolder(String edition) {