mirror of
https://github.com/correl/mage.git
synced 2025-04-09 09:11:05 -09: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
Mage.Client/src/main
|
@ -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);
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|Generate|TOK:RTR|Elemental|
|
||||
|Generate|TOK:RTR|Centaur 2|
|
||||
|
||||
|Generate|EMBLEM:M13|Liliana of the Dark Realms|
|
||||
|Generate|EMBLEM-:M13|Liliana of the Dark Realms|
|
||||
|
||||
|Generate|TOK:M13|Cat|
|
||||
|Generate|TOK:M13|Goat|
|
||||
|
|
Loading…
Add table
Reference in a new issue