1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 20:58:19 +08:00

Fix: [EN] '-' is missing in OpSi zone name

This commit is contained in:
LmeSzinc
2022-07-01 01:20:11 +08:00
parent 209a87c1e1
commit 2bdfe60509

View File

@@ -54,6 +54,9 @@ class OSMapOperation(MapOrderHandler, MissionHandler, PortHandler, StorageHandle
name = name.replace('é', 'e')
if 'nvcity' in name: # NY City Port read as 'V' rather than 'Y'
name = 'nycity'
# `-` is missing
name = name.replace('safe', '')
name = name.replace('zone', '')
return name
@Config.when(SERVER='jp')