allow non-english cards to be replaced

This commit is contained in:
marsteralex 2022-09-16 06:36:42 +02:00
parent 9be01b940f
commit 1a039f22dd

View File

@ -175,7 +175,7 @@ def fetch_special(query):
def write_art(art_names, id, index, card):
if card['digital'] or card['set_type'] == 'promo':
if card['digital'] or card['set_type'] == 'promo' or card['lang'] != 'en':
art_names[id] = index
else:
art_names[id] = -1