From 6d5158eebe72b1ff59712b447dc2d84e9f25b14b Mon Sep 17 00:00:00 2001 From: Maxmtg Date: Sun, 17 Mar 2013 19:59:12 +0000 Subject: [PATCH] quest token image fixes --- src/main/java/forge/item/CardToken.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/forge/item/CardToken.java b/src/main/java/forge/item/CardToken.java index 4bc45bf87b3..bb1879c09ad 100644 --- a/src/main/java/forge/item/CardToken.java +++ b/src/main/java/forge/item/CardToken.java @@ -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; }