- Fixed issue #9 (Angrath, Minotaur Pirate vs. indestructible creatures

)
This commit is contained in:
swordshine
2018-04-11 17:48:47 +08:00
parent 5a9dc2e09a
commit ab6de1752f
2 changed files with 5 additions and 1 deletions

View File

@@ -73,6 +73,10 @@ public class DestroyAllEffect extends SpellAbilityEffect {
card.clearRemembered();
}
if (sa.hasParam("RememberAllObjects")) {
card.addRemembered(list);
}
// exclude cards that can't be destroyed at this moment
list = CardLists.filter(list, new Predicate<Card>() {
@Override