use correct color background for proxy token images

master
ShawnieBoy 2017-01-27 05:27:21 +00:00
parent ec60ae4f96
commit 22bf1c353d
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class ImageFrame {
public static BufferedImage getDefaultBackground(IRenderableCard cardDef) {
if (cardDef.isMulti()) {
if (cardDef.isHybrid()) {
if (cardDef.isHybrid() || (cardDef.isToken() && cardDef.getNumColors() == 2)) {
List<BufferedImage> colorDefaults = Frame.getColorPairOrder(cardDef).stream().filter(cardDef::hasColor).map(ImageFrame::defaultBackground).collect(Collectors.toList());
return Frame.getBlendedFrame(
ResourceManager.newFrame(colorDefaults.get(0)),