1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-16 15:35:12 +00:00

perf(bounty): improve ending logic

This commit is contained in:
YoursFunny 2023-11-20 17:06:08 +08:00
parent 5e4abc147e
commit bbf3bf7c36
Signed by: YoursFunny
GPG Key ID: 207EDC3CD5B40F9C

View File

@ -61,12 +61,11 @@ class Bounty(BountyUI):
match status:
case BountyStatus.OCR:
if self.get_ticket():
if self.current_ticket == 0 or not self.task:
return BountyStatus.FINISH
return BountyStatus.SELECT
case BountyStatus.SELECT:
if not self.is_ticket_enough:
if self.current_ticket == 0:
logger.info('Bounty ticket empty')
return BountyStatus.FINISH
logger.warning('Bounty ticket not enough')
raise RequestHumanTakeover
if self.select_bounty(*self.current_bounty):
@ -77,8 +76,6 @@ class Bounty(BountyUI):
case BountyStatus.SWEEP:
if self.do_sweep(self.current_count):
self.task.pop(0)
if not self.task:
return BountyStatus.FINISH
return BountyStatus.END
return BountyStatus.ENTER
case BountyStatus.END: