mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
- Bugfix for Portal cards in Python Script. They were just grabbing any old Portal in the search.
This commit is contained in:
@@ -144,7 +144,7 @@ def addSets(card):
|
|||||||
block = html[start:end]
|
block = html[start:end]
|
||||||
|
|
||||||
for edition in allSets.keys():
|
for edition in allSets.keys():
|
||||||
edIndex = block.find(edition)
|
edIndex = block.find(edition+'<')
|
||||||
if edIndex == -1:
|
if edIndex == -1:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
@@ -162,7 +162,7 @@ def addSets(card):
|
|||||||
# Get setAbbreviation and setNumber
|
# Get setAbbreviation and setNumber
|
||||||
dataIndex = block.rfind('"/',0,edIndex)
|
dataIndex = block.rfind('"/',0,edIndex)
|
||||||
data = block[dataIndex+2:edIndex-2]
|
data = block[dataIndex+2:edIndex-2]
|
||||||
|
|
||||||
splitData = data.split('/')
|
splitData = data.split('/')
|
||||||
setAbbr = splitData[0]
|
setAbbr = splitData[0]
|
||||||
setNum = splitData[2].replace('.html', '')
|
setNum = splitData[2].replace('.html', '')
|
||||||
|
|||||||
Reference in New Issue
Block a user