Fix mana symbols for snow-covered basics

This commit is contained in:
Myrd
2017-07-05 02:09:52 +00:00
parent 78e7212ebc
commit c9ea265585

View File

@@ -241,7 +241,7 @@ public class CardImageRenderer {
if (state.isBasicLand()) {
//draw icons for basic lands
FSkinImage image;
switch (state.getName()) {
switch (state.getName().replaceFirst("^Snow-Covered ", "")) {
case "Plains":
image = FSkinImage.MANA_W;
break;