mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18: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()) {
|
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;
|
||||||
|
|||||||
Reference in New Issue
Block a user