Another fix to Karn Liberated.

This commit is contained in:
LevelX2 2013-02-24 09:57:00 +01:00
parent 5d2c4e1bbd
commit f0f52124d5

View file

@ -116,7 +116,7 @@ class KarnLiberatedEffect extends OneShotEffect<KarnLiberatedEffect> {
for (ExileZone zone: game.getExile().getExileZones()) {
if (zone.getId().equals(exileId)) {
for (Card card: zone.getCards(game)) {
if (!card.getSubtype().contains("Aura")) {
if (!card.getSubtype().contains("Aura") && CardUtil.isPermanentCard(card)) {
cards.add(card);
}
}