mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
add verify checks for Double Faced Cards having abilities on main card
* add booleans to card scanner, restricting to checking cards by name and set. Reduces duplication of verify checks across sets.
This commit is contained in:
parent
69e20b1061
commit
b32a786236
3 changed files with 32 additions and 9 deletions
|
|
@ -61,7 +61,7 @@ public final class RateCard {
|
|||
public static void bootstrapCardsAndRatings() {
|
||||
// preload cards and ratings
|
||||
log.info("Loading cards and rating...");
|
||||
List<Card> cards = CardScanner.getAllCards(false);
|
||||
List<Card> cards = CardScanner.getAllCards(false, true, true);
|
||||
for (Card card : cards) {
|
||||
RateCard.rateCard(card, null);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue