1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 02:48:23 +08:00

Opt: Allow research E-6, still ignore B series and E-2

This commit is contained in:
LmeSzinc
2020-08-04 02:02:51 +08:00
parent 756bb1ae7d
commit 82ee13f39e

View File

@@ -208,7 +208,7 @@ class ResearchSelector(UI):
# - Low income from B series research.
# Gold B-4 basically equivalent to C-12, but needs a lot of oil.
if (proj.genre.upper() == 'B') \
or proj.genre.upper() == 'E' and str(proj.duration) != '6':
or (proj.genre.upper() == 'E' and str(proj.duration) != '6'):
continue
out.append(index)
return out