mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
Dev: Fix os_extract in map name Méditerranée (#340)
This commit is contained in:
parent
ae639e9409
commit
b26f158bc0
@ -59,7 +59,9 @@ class OSChapter:
|
||||
for index, chapter in data.items():
|
||||
if not isinstance(index, int) or index >= 200:
|
||||
continue
|
||||
out[index] = chapter['name']
|
||||
name = chapter['name']
|
||||
name = name.replace('é', 'e') # OCR can't recognise letter "é"
|
||||
out[index] = name
|
||||
|
||||
return out
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user