mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-04-04 03:21:20 +08:00
Fix: Expiration detection when selected a commission
Red background of expiration become lighter when commission is selected
This commit is contained in:
parent
2d7135f7e7
commit
ca2491611b
@ -420,7 +420,7 @@ class Combat(Level, HPBalancer, Retirement, SubmarineCall, CombatAuto, CombatMan
|
||||
if not exp_info and self.handle_battle_status(drop=drop):
|
||||
battle_status = True
|
||||
continue
|
||||
if self.handle_popup_confirm('combat_status'):
|
||||
if self.handle_popup_confirm('COMBAT_STATUS'):
|
||||
if battle_status and not exp_info:
|
||||
logger.info('Locking a new ship')
|
||||
self.config.GET_SHIP_TRIGGERED = True
|
||||
|
@ -264,7 +264,7 @@ class RewardCommission(UI, InfoHandler):
|
||||
self.device.sleep(0.3)
|
||||
comm_timer.reset()
|
||||
|
||||
if self.handle_popup_confirm():
|
||||
if self.handle_popup_confirm('COMMISSION_START'):
|
||||
comm_timer.reset()
|
||||
pass
|
||||
if self.appear(COMMISSION_ADVICE, offset=(5, 20), interval=7):
|
||||
|
@ -123,7 +123,7 @@ class Commission:
|
||||
area = area_offset((-49, 68, -45, 84), self.area[0:2])
|
||||
button = Button(area=area, color=(189, 65, 66),
|
||||
button=area, name='IS_URGENT')
|
||||
if button.appear_on(self.image):
|
||||
if button.appear_on(self.image, threshold=30):
|
||||
area = area_offset((-49, 67, 45, 94), self.area[0:2])
|
||||
button = Button(area=area, color=(), button=area, name='EXPIRE')
|
||||
ocr = Duration(button)
|
||||
@ -167,7 +167,7 @@ class Commission:
|
||||
area = area_offset((-49, 68, -45, 84), self.area[0:2])
|
||||
button = Button(area=area, color=(189, 65, 66),
|
||||
button=area, name='IS_URGENT')
|
||||
if button.appear_on(self.image):
|
||||
if button.appear_on(self.image, threshold=30):
|
||||
area = area_offset((-49, 67, 45, 94), self.area[0:2])
|
||||
button = Button(area=area, color=(), button=area, name='EXPIRE')
|
||||
ocr = Duration(button)
|
||||
@ -211,7 +211,7 @@ class Commission:
|
||||
area = area_offset((-49, 68, -45, 84), self.area[0:2])
|
||||
button = Button(area=area, color=(189, 65, 66),
|
||||
button=area, name='IS_URGENT')
|
||||
if button.appear_on(self.image):
|
||||
if button.appear_on(self.image, threshold=30):
|
||||
area = area_offset((-49, 67, 45, 94), self.area[0:2])
|
||||
button = Button(area=area, color=(), button=area, name='EXPIRE')
|
||||
ocr = Duration(button)
|
||||
@ -255,7 +255,7 @@ class Commission:
|
||||
area = area_offset((-49, 68, -45, 84), self.area[0:2])
|
||||
button = Button(area=area, color=(189, 65, 66),
|
||||
button=area, name='IS_URGENT')
|
||||
if button.appear_on(self.image):
|
||||
if button.appear_on(self.image, threshold=30):
|
||||
area = area_offset((-49, 67, 45, 94), self.area[0:2])
|
||||
button = Button(area=area, color=(), button=area, name='EXPIRE')
|
||||
ocr = Duration(button)
|
||||
|
Loading…
x
Reference in New Issue
Block a user