Fixed tooltips not displayed for tokens.

This commit is contained in:
magenoxx 2011-06-13 19:56:43 +04:00
parent 8e788f3b32
commit 78bc920ba7
2 changed files with 116 additions and 113 deletions

View file

@ -93,7 +93,7 @@ public class CardView implements Serializable {
this.manaCost = card.getManaCost().getSymbols();
this.convertedManaCost = card.getManaCost().convertedManaCost();
if (card instanceof PermanentToken) {
this.rarity = Rarity.NA;
this.rarity = Rarity.COMMON;
} else {
this.rarity = card.getRarity();
}