mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38: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
|
modifiedHand.remove(source); // can't pay for itself
|
||||||
handList = modifiedHand;
|
handList = modifiedHand;
|
||||||
}
|
}
|
||||||
handList = CardLists.getValidCards(handList, getType().split(";"), payer, source, ability);
|
handList = CardLists.getValidCards(handList, getType().split(","), payer, source, ability);
|
||||||
|
|
||||||
return handList.size();
|
return handList.size();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user