mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Add back faced cards to writeDeckHtml (#3887)
This commit is contained in:
@@ -75,6 +75,11 @@ public class DeckHtmlSerializer {
|
||||
final PaperCard r = card.getKey();
|
||||
final String url = ForgeConstants.URL_PIC_DOWNLOAD + ImageUtil.getDownloadUrl(r, "");
|
||||
list.add(url);
|
||||
|
||||
if (r.hasBackFace()) {
|
||||
final String backUrl = ForgeConstants.URL_PIC_DOWNLOAD + ImageUtil.getDownloadUrl(r, "back");
|
||||
list.add(backUrl);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user