From 06a2b6e2f771b0a8e64d25d046fb17617a9fbf6f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 26 Oct 2013 10:02:54 +0200 Subject: [PATCH] * Text importer - Added another string to ignore. --- Mage/src/mage/cards/decks/importer/TxtDeckImporter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/cards/decks/importer/TxtDeckImporter.java b/Mage/src/mage/cards/decks/importer/TxtDeckImporter.java index d908e6309b8..2aa132282c7 100644 --- a/Mage/src/mage/cards/decks/importer/TxtDeckImporter.java +++ b/Mage/src/mage/cards/decks/importer/TxtDeckImporter.java @@ -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 IGNORE_NAMES = new HashSet(Arrays.asList(SET_VALUES)); private boolean sideboard = false;