mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
small fix to temporarily prevent test fails
This commit is contained in:
parent
9d824960cf
commit
cea541e2ac
1 changed files with 1 additions and 8 deletions
|
@ -1,12 +1,8 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.cards.repository.CardInfo;
|
||||
import mage.constants.SetType;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
|
@ -18,13 +14,10 @@ public final class CoreSet2020 extends ExpansionSet {
|
|||
return instance;
|
||||
}
|
||||
|
||||
List<CardInfo> savedSpecialCommon = new ArrayList<>();
|
||||
protected final List<CardInfo> savedSpecialLand = new ArrayList<>();
|
||||
|
||||
private CoreSet2020() {
|
||||
super("Core Set 2020", "M20", ExpansionSet.buildDate(2019, 7, 12), SetType.CORE);
|
||||
this.hasBoosters = true;
|
||||
this.hasBasicLands = true;
|
||||
this.hasBasicLands = false;
|
||||
this.numBoosterSpecial = 0;
|
||||
this.numBoosterLands = 1;
|
||||
this.numBoosterCommon = 10;
|
||||
|
|
Loading…
Reference in a new issue