mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
quest token image fixes
This commit is contained in:
@@ -45,9 +45,7 @@ public class CardToken implements InventoryItemFromSet, IPaperCard {
|
|||||||
this.card = c;
|
this.card = c;
|
||||||
this.name = c.getName();
|
this.name = c.getName();
|
||||||
this.edition = edition0;
|
this.edition = edition0;
|
||||||
this.imageFileName = String.format("%s%s%s",
|
this.imageFileName = String.format("%s%s", null == edition || CardEdition.UNKNOWN == edition ? "" : edition.getCode(), imageFileName);
|
||||||
null == edition || CardEdition.UNKNOWN == edition ? "" : edition.getCode(),
|
|
||||||
ImageCache.TOKEN_PREFIX, imageFileName);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public String getName() { return name; }
|
@Override public String getName() { return name; }
|
||||||
|
|||||||
Reference in New Issue
Block a user