mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Reverted the last experimental fix due to a crash. Will recommit soon.
This commit is contained in:
@@ -67,14 +67,7 @@ public class GuiDownloadPicturesLQ extends GuiDownloader {
|
|||||||
for (final IPaperCard c : CardDb.instance().getUniqueCards()) {
|
for (final IPaperCard c : CardDb.instance().getUniqueCards()) {
|
||||||
//System.out.println(c.getName());
|
//System.out.println(c.getName());
|
||||||
CardRules cardRules = c.getRules();
|
CardRules cardRules = c.getRules();
|
||||||
String cardName = "";
|
this.createDLObjects(cardRules.getPictureUrl(), cardRules.getMainPart().getName());
|
||||||
if (cardRules.getSplitType() == CardSplitType.Split) {
|
|
||||||
cardName = String.format("%s%s", cardRules.getMainPart().getName() + cardRules.getOtherPart().getName());
|
|
||||||
System.out.println(cardName);
|
|
||||||
} else {
|
|
||||||
cardName = cardRules.getMainPart().getName();
|
|
||||||
}
|
|
||||||
this.createDLObjects(cardRules.getPictureUrl(), cardName);
|
|
||||||
|
|
||||||
ICardCharacteristics secondSide = cardRules.getOtherPart();
|
ICardCharacteristics secondSide = cardRules.getOtherPart();
|
||||||
if (secondSide != null && cardRules.getSplitType() == CardSplitType.Transform) {
|
if (secondSide != null && cardRules.getSplitType() == CardSplitType.Transform) {
|
||||||
|
|||||||
Reference in New Issue
Block a user