Skip to content

Commit

Permalink
Removed poster-promo styled cards from list
Browse files Browse the repository at this point in the history
  • Loading branch information
suitangi committed Aug 1, 2024
1 parent 28678e5 commit 1df281d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cardList.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion maintenance/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,12 @@ function start() {
} else if (dfc.includes(d[i].layout) && d[i].card_faces == undefined) {
//dfc and no card_faces array
continue;
} else if (d[i].promo_types && d[i].promo_types.includes('poster')) {
//poster promo style cards
continue;
} else { //include the card
let card = d[i];

let toPush = {
id: card.id
};
Expand Down

0 comments on commit 1df281d

Please sign in to comment.