mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
Fix: Keep B-397-RF (fixed #4042)
This commit is contained in:
parent
5f89eb6276
commit
9b135b17ad
@ -547,7 +547,11 @@ class ResearchProject:
|
||||
suffix = 'UL'
|
||||
# TW ocr errors, convert B to D
|
||||
if prefix == 'B' and number in ResearchProject.D_PROJECT_NUMBERS:
|
||||
prefix = 'D'
|
||||
# Keep B-397-RF, S7 D-397-MI and S* B-397-RF shares 397
|
||||
if number == '397' and suffix == 'RF':
|
||||
pass
|
||||
else:
|
||||
prefix = 'D'
|
||||
# I-483-RF revised to -483-RF -> D-483-RF
|
||||
if prefix == '' and number in ResearchProject.D_PROJECT_NUMBERS:
|
||||
prefix = 'D'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user