- Fix EditionTracking in relation to AE cards

This commit is contained in:
Sol
2017-01-15 03:54:05 +00:00
parent 6e78a1adca
commit 3cbee38b92

View File

@@ -101,7 +101,7 @@ def initializeForgeCards():
name += ' // '
if not name or split:
name += line[5:].rstrip()
name += line[5:].rstrip().lower()
elif line.startswith("AlternateMode") and 'Split' in line:
split = True
@@ -283,7 +283,7 @@ if __name__ == '__main__':
for key in mtgDataCards.keys():
setList = mtgDataCards[key]
if currentSet in setList:
if key in forgeCards:
if key.lower() in forgeCards:
currentImplemented.append(key)
elif key != "":
currentMissing.append(key)