- Fixed UnmodifiableCollection.remove call caused by Balance.

This commit is contained in:
Sloth
2013-06-14 21:55:06 +00:00
parent eaa5a35f47
commit a8b9c92207

View File

@@ -75,7 +75,7 @@ public class CardFactorySorceries {
} }
for (Player p : game.getPlayers()) { for (Player p : game.getPlayers()) {
List<Card> hand = p.getCardsIn(ZoneType.Hand); List<Card> hand = new ArrayList<Card>(p.getCardsIn(ZoneType.Hand));
int sac = hand.size() - min; int sac = hand.size() - min;
if (sac == 0) { if (sac == 0) {
continue; continue;