- AI shouldn't try to cast spDestroyTgt cards on untargetable creatures anymore.

This commit is contained in:
jendave
2011-08-06 03:29:10 +00:00
parent bc6dd8b1e7
commit 37429f75a3

View File

@@ -2364,7 +2364,7 @@ public class CardFactory implements NewConstants {
CardList getTargets() { CardList getTargets() {
CardList tmpList = new CardList(); CardList tmpList = new CardList();
tmpList.addAll(AllZone.Human_Play.getCards()); tmpList.addAll(AllZone.Human_Play.getCards());
tmpList.filter(new CardListFilter() { tmpList = tmpList.filter(new CardListFilter() {
public boolean addCard(Card c) { public boolean addCard(Card c) {
return (CardFactoryUtil.canTarget(card, c)); return (CardFactoryUtil.canTarget(card, c));
} }