mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Changed txt importer to recognize "Sideboard" independent if upper or lower case.
This commit is contained in:
parent
9298e2341d
commit
82c44b2b3b
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ public class TxtDeckImporter extends DeckImporter {
|
|||
return;
|
||||
}
|
||||
|
||||
if (line.startsWith("Sideboard")) {
|
||||
if (line.toLowerCase().startsWith("sideboard")) {
|
||||
sideboard = true;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue