mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user