mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Merge pull request #4565 from spjspj/master
Missing devoid type background
This commit is contained in:
commit
7a0707e1fa
2 changed files with 3 additions and 2 deletions
|
@ -118,6 +118,7 @@ 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");
|
||||||
|
|
||||||
|
@ -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 |
Loading…
Reference in a new issue