Undo unintended rearranement of set file methods.

This commit is contained in:
Justin Herlehy 2017-01-02 19:23:15 -05:00
parent a44ff0e4eb
commit 24d58193fa

View file

@ -44,8 +44,15 @@ import java.util.List;
public class AetherRevolt extends ExpansionSet {
private static final AetherRevolt fINSTANCE = new AetherRevolt();
public static AetherRevolt getInstance() {
return fINSTANCE;
}
protected final List<CardInfo> savedSpecialLand = new ArrayList<>();
//TODO: Check Paradox Engine's card number
private AetherRevolt() {
super("Aether Revolt", "AER", ExpansionSet.buildDate(2017, 1, 20), SetType.EXPANSION);
this.blockName = "Kaladesh";
@ -92,12 +99,6 @@ public class AetherRevolt extends ExpansionSet {
cards.add(new SetCardInfo("Yahenni's Expertise", 75, Rarity.RARE, mage.cards.y.YahennisExpertise.class));
}
//TODO: Check Paradox Engine's card number
public static AetherRevolt getInstance() {
return fINSTANCE;
}
@Override
public List<CardInfo> getSpecialLand() {
if (savedSpecialLand.isEmpty()) {