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

Upd:[JP]Assets of storage module, missing STORAGE_CHECK.png fixed

This commit is contained in:
bookbug666
2022-12-10 19:47:09 +08:00
parent 901830e35c
commit 3c1a03b61c
25 changed files with 15 additions and 19 deletions

View File

@@ -206,13 +206,9 @@ class ResearchSelector(ResearchUI):
# 2022.08.23 Allow all E-2, disassemble equipment is now supported
# Ignore E-2 if don't have any boxes in storage to disassemble,
# Or will enter a loop of starting research, trying to disassemble, cancel research
if not self.storage_has_boxes or self.config.SERVER in ['jp', 'tw']:
if self.config.SERVER == 'jp':
if project.genre.upper() == 'E' and str(project.duration) != '6':
return False
else:
if project.genre.upper() == 'E' and project.task != '':
return False
if not self.storage_has_boxes or self.config.SERVER in ['tw']:
if project.genre.upper() == 'E' and project.task != '':
return False
return True