forked from External/mage
Refactor: removed outdated code for non implemented cards
This commit is contained in:
parent
a464333761
commit
38a45c2e8e
5 changed files with 5 additions and 20 deletions
|
|
@ -512,7 +512,7 @@ public class CardView extends SimpleCardView {
|
|||
}
|
||||
if (this.rarity == null && object instanceof StackAbility) {
|
||||
StackAbility stackAbility = (StackAbility) object;
|
||||
this.rarity = Rarity.NA;
|
||||
this.rarity = Rarity.SPECIAL;
|
||||
this.rules = new ArrayList<>();
|
||||
this.rules.add(stackAbility.getRule());
|
||||
if (stackAbility.getZone() == Zone.COMMAND) {
|
||||
|
|
@ -644,7 +644,7 @@ public class CardView extends SimpleCardView {
|
|||
this.frameColor = token.getFrameColor(null);
|
||||
this.frameStyle = token.getFrameStyle();
|
||||
this.manaCost = token.getManaCost().getSymbols();
|
||||
this.rarity = Rarity.NA;
|
||||
this.rarity = Rarity.SPECIAL;
|
||||
this.type = token.getTokenType();
|
||||
this.tokenDescriptor = token.getTokenDescriptor();
|
||||
this.tokenSetCode = token.getOriginalExpansionSetCode();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue