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 #5721)
This commit is contained in:
parent
6186cb1d34
commit
1518802a38
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue