Fixed a bug that the sets Shards of Alara and Alara Reborn were swapt in client logic.

This commit is contained in:
LevelX2 2013-04-11 16:38:12 +02:00
parent 916d800bf6
commit 8fc9ca7a94

View file

@ -242,13 +242,13 @@ public class ConstructedFormats {
return Arrays.asList("ALA", "CON", "ARB");
}
if (format.equals("Alara Reborn")) {
return Arrays.asList("ALA");
return Arrays.asList("ARB");
}
if (format.equals("Conflux")) {
return Arrays.asList("CON");
}
if (format.equals("Shards of Alara")) {
return Arrays.asList("ARB");
return Arrays.asList("ALA");
}
if (format.equals("* Zendikar Block")) {
return Arrays.asList("ZEN", "WWK", "ROE");