* Download definition for M15 + CNS token and emblem images.

This commit is contained in:
LevelX2 2014-09-22 23:31:26 +02:00
parent 51728bcf4f
commit cc713808cf
4 changed files with 35 additions and 3 deletions

View file

@ -346,6 +346,10 @@ public class DownloadPictures extends DefaultBoundedRangeModel implements Runnab
String set = params[2].substring(8);
CardDownloadData card = new CardDownloadData(params[3] + " Emblem", set, 0, false, 0, "", true);
list.add(card);
} else if (params[1].toLowerCase().equals("generate") && params[2].startsWith("EMBLEM!:")) {
String set = params[2].substring(8);
CardDownloadData card = new CardDownloadData(params[3], set, 0, false, 0, "", true);
list.add(card);
}
} else {
log.error("wrong format for image urls: " + line);