Merge pull request #4565 from spjspj/master

Missing devoid type background
This commit is contained in:
spjspj 2018-03-04 01:22:59 +10:00 committed by GitHub
commit 7a0707e1fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -118,7 +118,8 @@ public class ModernCardRenderer extends CardRenderer {
public static final BufferedImage BG_IMG_ARTIFACT = loadBackgroundImage("artifact"); public static final BufferedImage BG_IMG_ARTIFACT = loadBackgroundImage("artifact");
public static final BufferedImage BG_IMG_LAND = loadBackgroundImage("land"); public static final BufferedImage BG_IMG_LAND = loadBackgroundImage("land");
public static final BufferedImage BG_IMG_VEHICLE = loadBackgroundImage("vehicle"); public static final BufferedImage BG_IMG_VEHICLE = loadBackgroundImage("vehicle");
public static final BufferedImage BG_IMG_COLORLESS = loadBackgroundImage("colorless");
public static final BufferedImage FRAME_INVENTION = loadFramePart("invention_frame"); public static final BufferedImage FRAME_INVENTION = loadFramePart("invention_frame");
public static final Color BORDER_WHITE = new Color(216, 203, 188); public static final Color BORDER_WHITE = new Color(216, 203, 188);
@ -1295,7 +1296,7 @@ public class ModernCardRenderer extends CardRenderer {
return BG_IMG_GREEN; return BG_IMG_GREEN;
} else { } else {
// Colorless // Colorless
return null; return BG_IMG_COLORLESS;
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB