mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Another fix to Karn Liberated.
This commit is contained in:
parent
5d2c4e1bbd
commit
f0f52124d5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue