mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
fix for missing function in AllZoneUtil
This commit is contained in:
@@ -523,18 +523,6 @@ public class AllZoneUtil {
|
||||
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...
|
||||
/**
|
||||
* use this when Human needs to rearrange the top X cards in a player's library. You
|
||||
|
||||
Reference in New Issue
Block a user