- Fixed ImprintedCardManaCost xCount.

This commit is contained in:
Sloth
2012-12-20 08:24:28 +00:00
parent 2c4151a996
commit 65e8f8e419

View File

@@ -2064,7 +2064,7 @@ public class CardFactoryUtil {
} }
if (l[0].startsWith("ImprintedCardManaCost")) { if (l[0].startsWith("ImprintedCardManaCost")) {
if (c.getImprinted().get(0).getCMC() > 0) { if (!c.getImprinted().isEmpty()) {
return c.getImprinted().get(0).getCMC(); return c.getImprinted().get(0).getCMC();
} }
} }