mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Fixed Mulligan.
This commit is contained in:
@@ -1242,7 +1242,7 @@ public abstract class Player extends GameEntity implements Comparable<Player> {
|
||||
* @return an int
|
||||
*/
|
||||
public int doMulligan() {
|
||||
final List<Card> hand = getCardsIn(ZoneType.Hand);
|
||||
final List<Card> hand = new ArrayList<Card>(getCardsIn(ZoneType.Hand));
|
||||
for (final Card c : hand) {
|
||||
game.getAction().moveToLibrary(c);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user