reverted unnecessary change in CardView.

This commit is contained in:
magenoxx 2010-11-02 09:12:57 +00:00
parent a779289ec2
commit 34a0898fb0

View file

@ -64,7 +64,6 @@ public class CardView implements Serializable {
protected String art; protected String art;
protected Rarity rarity; protected Rarity rarity;
protected String expansionSetCode; protected String expansionSetCode;
protected boolean tapped;
public List<UUID> targets; public List<UUID> targets;
@ -97,9 +96,6 @@ public class CardView implements Serializable {
this.expansionSetCode = card.getExpansionSetCode(); this.expansionSetCode = card.getExpansionSetCode();
} }
//FIXME
this.tapped = false;
if (card instanceof Spell) { if (card instanceof Spell) {
Spell<?> spell = (Spell<?>)card; Spell<?> spell = (Spell<?>)card;
if (spell.getSpellAbility().getTargets().size() > 0) { if (spell.getSpellAbility().getTargets().size() > 0) {