mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
fixed M13 emblem picture download (emblem pictures are not used yet?)
This commit is contained in:
parent
cdb381df2d
commit
62844401ee
2 changed files with 5 additions and 1 deletions
|
|
@ -325,6 +325,10 @@ public class DownloadPictures extends DefaultBoundedRangeModel implements Runnab
|
|||
String set = params[2].substring(7);
|
||||
CardInfo card = new CardInfo("Emblem " + params[3], set, 0, 0, true);
|
||||
list.add(card);
|
||||
} else if (params[1].toLowerCase().equals("generate") && params[2].startsWith("EMBLEM-:")) {
|
||||
String set = params[2].substring(8);
|
||||
CardInfo card = new CardInfo(params[3] + " Emblem", set, 0, 0, true);
|
||||
list.add(card);
|
||||
}
|
||||
} else {
|
||||
log.error("wrong format for image urls: " + line);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue