* Text importer - Added another string to ignore.

This commit is contained in:
LevelX2 2013-10-26 10:02:54 +02:00
parent ed11858bed
commit 06a2b6e2f7

View file

@ -47,7 +47,7 @@ import mage.cards.repository.ExpansionRepository;
*/
public class TxtDeckImporter extends DeckImporter {
public static final String[] SET_VALUES = new String[] { "lands", "creatures", "planeswalkers","other spells" };
public static final String[] SET_VALUES = new String[] { "lands", "creatures", "planeswalkers","other spells","sideboard cards" };
public static final Set<String> IGNORE_NAMES = new HashSet<String>(Arrays.asList(SET_VALUES));
private boolean sideboard = false;