mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Fix CostReveal with a comma (e.g. Snarl lands)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user