mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* Fixed same images download bug for basic lands in Star Wars set.
This commit is contained in:
parent
c24ba742f6
commit
7cb90e2475
4 changed files with 55 additions and 1620 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -195,7 +195,6 @@ public enum ScryfallImageSource implements CardImageSource {
|
|||
supportedSets.add("DDS");
|
||||
supportedSets.add("W17");
|
||||
supportedSets.add("AKH");
|
||||
supportedSets.add("MPS");
|
||||
supportedSets.add("CMA");
|
||||
supportedSets.add("E01");
|
||||
supportedSets.add("HOU");
|
||||
|
|
|
|||
|
|
@ -134,6 +134,10 @@ public class CardDownloadData {
|
|||
return CardUtil.parseCardNumberAsInt(collectorId);
|
||||
}
|
||||
|
||||
public String getCollectorIdPostfix() {
|
||||
return getCollectorId().replaceAll(getCollectorIdAsInt().toString(), "");
|
||||
}
|
||||
|
||||
public boolean isCollectorIdWithStr() {
|
||||
// card have special numbers like "103a", "180b" (scryfall style)
|
||||
return !getCollectorId().equals(getCollectorIdAsInt().toString());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue