1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 01:01:05 -09:00

fixed Freeform Commander not allowing multiples of cards like Persistent Petitioners (fixes )

This commit is contained in:
Evan Kranzler 2019-04-15 09:04:42 -04:00
parent 6186cb1d34
commit 1518802a38

View file

@ -60,7 +60,7 @@ public class FreeformCommander extends Constructed {
for (Map.Entry<String, Integer> entry : counts.entrySet()) {
if (entry.getValue() > 1) {
if (!basicLandNames.contains(entry.getKey())) {
if (!basicLandNames.contains(entry.getKey()) && !anyNumberCardsAllowed.contains(entry.getKey())) {
invalid.put(entry.getKey(), "Too many: " + entry.getValue());
valid = false;
}