mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Fixed UnmodifiableCollection.remove call caused by Balance.
This commit is contained in:
@@ -75,7 +75,7 @@ public class CardFactorySorceries {
|
||||
}
|
||||
|
||||
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;
|
||||
if (sac == 0) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user