- Fixed possible ConcurrentModificationException caused by Gift of the Gargantuan.

This commit is contained in:
Sloth
2012-06-29 16:18:55 +00:00
parent e92ad38c68
commit 5500b86e84

View File

@@ -529,7 +529,7 @@ public final class AbilityFactoryReveal {
if (!andOrValid.equals("")) {
andOrCards.remove(chosen);
if (!chosen.isValid(andOrValid.split(","), host.getController(), host)) {
valid = andOrCards;
valid = new CardList(andOrCards);
} else if (!chosen.isValid(changeValid.split(","), host.getController(), host)) {
valid.removeAll(andOrCards);
}