- Fixed ConcurrentModificationException in InputMulligan.

This commit is contained in:
Sloth
2012-11-17 21:02:18 +00:00
parent 9a0e7db9d4
commit 6e73e0fc5e

View File

@@ -118,7 +118,7 @@ public class InputMulligan extends Input {
final GameAction ga = game.getAction();
for (Player p : game.getPlayers()) {
final List<Card> openingHand = p.getCardsIn(ZoneType.Hand);
final List<Card> openingHand = new ArrayList<Card>(p.getCardsIn(ZoneType.Hand));
for (final Card c : openingHand) {
if ( p.isHuman() ) {