[ZNR] Added images download for modal double faces cards (#7012)

This commit is contained in:
Oleg Agafonov 2020-10-01 13:23:04 +04:00
parent a73c9bddae
commit c60bf3ccef
4 changed files with 21 additions and 7 deletions

View file

@ -58,8 +58,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
protected String flipCardName;
protected boolean usesVariousArt = false;
protected boolean morphCard;
protected boolean modalDFC; // modal double faces card
protected List<UUID> attachments = new ArrayList<>();
public CardImpl(UUID ownerId, CardSetInfo setInfo, CardType[] cardTypes, String costs) {
@ -139,7 +137,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
flipCardName = card.flipCardName;
usesVariousArt = card.usesVariousArt;
morphCard = card.morphCard;
modalDFC = card.modalDFC;
this.attachments.addAll(card.attachments);
}