Refactor: removed outdated code for non implemented cards

This commit is contained in:
Oleg Agafonov 2018-09-09 16:06:40 +04:00
parent a464333761
commit 38a45c2e8e
5 changed files with 5 additions and 20 deletions

View file

@ -283,7 +283,7 @@ public class MorphAbility extends StaticAbility implements AlternativeSourceCost
mageObject.getManaCost().clear();
if (mageObject instanceof Permanent) {
((Permanent) mageObject).setExpansionSetCode("");
((Permanent) mageObject).setRarity(Rarity.NA);
((Permanent) mageObject).setRarity(Rarity.SPECIAL);
}
}

View file

@ -6,7 +6,6 @@ package mage.constants;
*/
public enum Rarity {
NA ("na", "na", "N", 0),
LAND ("Land", "common", "C", 1),
COMMON ("Common", "common", "C", 1),
UNCOMMON ("Uncommon", "uncommon", "U", 2),