mirror of
https://github.com/Cockatrice/Magic-Spoiler.git
synced 2026-03-22 02:06:17 -05:00
Double space to single space after period in card text. (#152)
This commit is contained in:
parent
2f5ccb4887
commit
93b65146ec
|
|
@ -205,7 +205,7 @@ def parse_mtgs(mtgs, manual_cards=[], card_corrections=[], delete_cards=[], rela
|
|||
if subtypes:
|
||||
cardjson['subtypes'] = subtypes
|
||||
cardjson["rarity"] = card['rarity']
|
||||
cardjson["text"] = card['rules']
|
||||
cardjson["text"] = card['rules'].replace(". ",". ")
|
||||
cardjson["type"] = card['type']
|
||||
|
||||
workingtypes = card['type']
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user