mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 15:02:59 +00:00
TTS format bug
This commit is contained in:
parent
75373ae48b
commit
66d0979192
1 changed files with 2 additions and 2 deletions
|
@ -64,10 +64,10 @@ class Card(yaml.YAMLObject):
|
||||||
|
|
||||||
else:
|
else:
|
||||||
def sub_encircle(match: re.Match):
|
def sub_encircle(match: re.Match):
|
||||||
return encircle_symbol(match.group(1), True)
|
return encircle_symbol(match.group(1), False)
|
||||||
|
|
||||||
def sub_elements(match: re.Match):
|
def sub_elements(match: re.Match):
|
||||||
return encircle_symbol(Card.__ELEMENTS_MAP[match.group(1)], True)
|
return encircle_symbol(Card.__ELEMENTS_MAP[match.group(1)], False)
|
||||||
|
|
||||||
# load text
|
# load text
|
||||||
text = str(data[f"Text_{language}"])
|
text = str(data[f"Text_{language}"])
|
||||||
|
|
Loading…
Reference in a new issue