Skip to content

Commit

Permalink
Fix MB2
Browse files Browse the repository at this point in the history
Scryfall changed the collector numbers of playtest cards.
  • Loading branch information
Senryoku committed Dec 7, 2024
1 parent 3f5c5d1 commit d654eee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/BoosterFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2556,10 +2556,12 @@ class MB2BoosterFactory extends BoosterFactory {
this.futureSight.set(cid, copies);
} else if (collector_number >= 258 && collector_number <= 264) {
this.alchemy.set(cid, copies);
} else if (collector_number >= 265 && collector_number <= 385) {
} else if (collector_number >= 265) {
this.playtest.set(cid, copies);
}
console.log(collector_number);
}
console.log("this.playtest", this.playtest);
}

generateBooster(targets: Targets) {
Expand Down

0 comments on commit d654eee

Please sign in to comment.