mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
Merge branch 'master' into 'master'
Fix CostReveal with a comma (e.g. Snarl lands) See merge request core-developers/forge!5833
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