quest token image fixes

This commit is contained in:
Maxmtg
2013-03-17 19:59:12 +00:00
parent 7ac1273310
commit 6d5158eebe

View File

@@ -45,9 +45,7 @@ public class CardToken implements InventoryItemFromSet, IPaperCard {
this.card = c;
this.name = c.getName();
this.edition = edition0;
this.imageFileName = String.format("%s%s%s",
null == edition || CardEdition.UNKNOWN == edition ? "" : edition.getCode(),
ImageCache.TOKEN_PREFIX, imageFileName);
this.imageFileName = String.format("%s%s", null == edition || CardEdition.UNKNOWN == edition ? "" : edition.getCode(), imageFileName);
}
@Override public String getName() { return name; }