diff --git a/src/main/java/forge/card/abilityfactory/AbilityFactoryToken.java b/src/main/java/forge/card/abilityfactory/AbilityFactoryToken.java index 21eed30878f..1abbd41e7fb 100644 --- a/src/main/java/forge/card/abilityfactory/AbilityFactoryToken.java +++ b/src/main/java/forge/card/abilityfactory/AbilityFactoryToken.java @@ -542,11 +542,11 @@ public class AbilityFactoryToken extends AbilityFactory { } } if (this.tokenImage.equals("")) { - imageName += colorDesc.trim() + " " + this.tokenPower + " " + this.tokenToughness + " " + this.tokenName; + imageName += colorDesc.replace(" ", "") + " " + this.tokenPower + " " + this.tokenToughness + " " + this.tokenName; } else { imageName = this.tokenImage; } - // System.out.println("AF_Token imageName = " + imageName); + System.out.println("AF_Token imageName = " + imageName); for (final char c : colorDesc.toCharArray()) { cost += c + ' ';