mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 02:08:00 +00:00
- Fix EditionTracking in relation to AE cards
This commit is contained in:
@@ -101,7 +101,7 @@ def initializeForgeCards():
|
|||||||
name += ' // '
|
name += ' // '
|
||||||
|
|
||||||
if not name or split:
|
if not name or split:
|
||||||
name += line[5:].rstrip()
|
name += line[5:].rstrip().lower()
|
||||||
|
|
||||||
elif line.startswith("AlternateMode") and 'Split' in line:
|
elif line.startswith("AlternateMode") and 'Split' in line:
|
||||||
split = True
|
split = True
|
||||||
@@ -283,7 +283,7 @@ if __name__ == '__main__':
|
|||||||
for key in mtgDataCards.keys():
|
for key in mtgDataCards.keys():
|
||||||
setList = mtgDataCards[key]
|
setList = mtgDataCards[key]
|
||||||
if currentSet in setList:
|
if currentSet in setList:
|
||||||
if key in forgeCards:
|
if key.lower() in forgeCards:
|
||||||
currentImplemented.append(key)
|
currentImplemented.append(key)
|
||||||
elif key != "":
|
elif key != "":
|
||||||
currentMissing.append(key)
|
currentMissing.append(key)
|
||||||
|
|||||||
Reference in New Issue
Block a user