mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fixed bug Historical Type 2 Issues #3417.
Shards of Alara had an incorrect release date. Nemisis had the wrong set code in the hardcoded standards.
This commit is contained in:
parent
abb4576313
commit
1869777634
2 changed files with 5 additions and 4 deletions
|
@ -51,11 +51,11 @@ public class HistoricalType2 extends Constructed {
|
|||
{"TMP", "STH", "EXO", "USG", "ULG", "6ED", "UDS"},
|
||||
// 8th Standard: Urza's Saga, Urza's Legacy, 6th, Urza's Destiny,
|
||||
// Mercadian Masques, Nemesis, Prophecy.
|
||||
{"USG", "ULG", "6ED", "UDS", "MMQ", "NMS", "PCY"},
|
||||
{"USG", "ULG", "6ED", "UDS", "MMQ", "NEM", "PCY"},
|
||||
// 9th Standard
|
||||
{"6ED", "MMQ", "NMS", "PCY", "INV", "PLS"},
|
||||
{"6ED", "MMQ", "NEM", "PCY", "INV", "PLS"},
|
||||
// 10th Standard
|
||||
{"7ED", "MMQ", "NMS", "PCY", "INV", "PLS", "APC"},
|
||||
{"7ED", "MMQ", "NEM", "PCY", "INV", "PLS", "APC"},
|
||||
// 11th Standard
|
||||
{"7ED", "INV", "APC", "PLS", "ODY", "TOR", "JUD"},
|
||||
// 12th Standard
|
||||
|
|
|
@ -46,7 +46,8 @@ public class ShardsOfAlara extends ExpansionSet {
|
|||
}
|
||||
|
||||
private ShardsOfAlara() {
|
||||
super("Shards of Alara", "ALA", ExpansionSet.buildDate(2008, 8, 27), SetType.EXPANSION);
|
||||
// release date of Shards of Alara was October 3rd, 2008. Was previously entered as August 27.
|
||||
super("Shards of Alara", "ALA", ExpansionSet.buildDate(2008, 10, 3), SetType.EXPANSION);
|
||||
this.blockName = "Shards of Alara";
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterLands = 1;
|
||||
|
|
Loading…
Reference in a new issue