1) add javadoc to AllZoneUtil.java

2) add CardList getPlayerHand(player);
3) update Glasses of Urza to use new function
This commit is contained in:
jendave
2011-08-06 04:07:50 +00:00
parent 795aa68cbc
commit c6d416a4d0
2 changed files with 32 additions and 3 deletions

View File

@@ -18592,9 +18592,8 @@ public class CardFactory implements NewConstants {
@Override
public void resolve() {
final String player = getTargetPlayer();
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, player);
CardList handList = new CardList( hand.getCards());
AllZone.Display.getChoice("Target player's hand", handList.toArray());
CardList hand = AllZoneUtil.getPlayerHand(player);
AllZone.Display.getChoice("Target player's hand", hand.toArray());
}
@Override