mirror of
https://github.com/correl/mage.git
synced 2024-11-16 11:09:29 +00:00
Fixed code warning: Octal integer literals in XMage sets.
This commit is contained in:
parent
80fc546314
commit
e7347ff7f2
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ public final class Anthologies extends ExpansionSet {
|
|||
}
|
||||
|
||||
private Anthologies() {
|
||||
super("Anthologies", "ATH", ExpansionSet.buildDate(1998, 11, 01), SetType.SUPPLEMENTAL);
|
||||
super("Anthologies", "ATH", ExpansionSet.buildDate(1998, 11, 1), SetType.SUPPLEMENTAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = true;
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ public final class Commander2013Edition extends ExpansionSet {
|
|||
}
|
||||
|
||||
private Commander2013Edition() {
|
||||
super("Commander 2013 Edition", "C13", ExpansionSet.buildDate(2013, 11, 01), SetType.SUPPLEMENTAL);
|
||||
super("Commander 2013 Edition", "C13", ExpansionSet.buildDate(2013, 11, 1), SetType.SUPPLEMENTAL);
|
||||
this.blockName = "Command Zone";
|
||||
|
||||
cards.add(new SetCardInfo("Acidic Slime", 134, Rarity.UNCOMMON, mage.cards.a.AcidicSlime.class));
|
||||
|
|
|
@ -18,7 +18,7 @@ public final class Commander2014Edition extends ExpansionSet {
|
|||
}
|
||||
|
||||
private Commander2014Edition() {
|
||||
super("Commander 2014 Edition", "C14", ExpansionSet.buildDate(2014, 11, 07), SetType.SUPPLEMENTAL);
|
||||
super("Commander 2014 Edition", "C14", ExpansionSet.buildDate(2014, 11, 7), SetType.SUPPLEMENTAL);
|
||||
this.blockName = "Command Zone";
|
||||
cards.add(new SetCardInfo("Abyssal Persecutor", 132, Rarity.MYTHIC, mage.cards.a.AbyssalPersecutor.class));
|
||||
cards.add(new SetCardInfo("Adarkar Valkyrie", 63, Rarity.RARE, mage.cards.a.AdarkarValkyrie.class));
|
||||
|
|
Loading…
Reference in a new issue