EffectEffect: now does treat emblems different than Effects, also does try to guess the ImageKey from Name for Emblems

shows the PlaneswalkerType for the Emblem but thats only cosmetic.
This commit is contained in:
Hanmac
2016-07-01 17:41:19 +00:00
parent a2facc6e39
commit 5dcee79d54
4 changed files with 26 additions and 6 deletions

View File

@@ -205,7 +205,7 @@ public class CardDetailUtil {
String curColors = "";
// do not show current colors for temp effect cards, emblems and the like
if (state.getType().hasSubtype("Effect")) {
if (state.getType().isEmblem() || state.getType().hasSubtype("Effect")) {
return "";
}