- Fix CostReveal with a comma (e.g. Snarl lands)

This commit is contained in:
Michael Kamensky
2021-11-15 19:01:01 +03:00
parent 9e6f0a14e3
commit 47e16f4977

View File

@@ -72,7 +72,7 @@ public class CostReveal extends CostPartWithList {
modifiedHand.remove(source); // can't pay for itself
handList = modifiedHand;
}
handList = CardLists.getValidCards(handList, getType().split(";"), payer, source, ability);
handList = CardLists.getValidCards(handList, getType().split(","), payer, source, ability);
return handList.size();
}