fix for missing function in AllZoneUtil

This commit is contained in:
jendave
2011-08-07 01:12:57 +00:00
parent 21a6e0e3e9
commit 26b669e4d6

View File

@@ -523,18 +523,6 @@ public class AllZoneUtil {
return all; return all;
} }
public static CardList getPlayerCardsWithPhasing(final Player player) {
CardList cards = new CardList();
cards.addAll(AllZone.getZone(Constant.Zone.Battlefield, player).getCards());
cards = cards.filter(new CardListFilter() {
public boolean addCard(Card c) {
return c.hasPhasing();
}
});
return cards;
}
//zone manipulation, maybe be better off in GameAction.java... //zone manipulation, maybe be better off in GameAction.java...
/** /**
* use this when Human needs to rearrange the top X cards in a player's library. You * use this when Human needs to rearrange the top X cards in a player's library. You