mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-15 22:19:18 +00:00
Fix: wait_selected() has no return
This commit is contained in:
parent
f0926d0b50
commit
f241b4315c
@ -319,6 +319,13 @@ class InventoryManager:
|
||||
self.update()
|
||||
|
||||
def wait_selected(self, skip_first_screenshot=True):
|
||||
"""
|
||||
Args:
|
||||
skip_first_screenshot:
|
||||
|
||||
Returns:
|
||||
bool: If success
|
||||
"""
|
||||
timeout = Timer(2, count=6).start()
|
||||
while 1:
|
||||
if skip_first_screenshot:
|
||||
@ -328,7 +335,7 @@ class InventoryManager:
|
||||
|
||||
self.update()
|
||||
if self.selected is not None:
|
||||
break
|
||||
return True
|
||||
if timeout.reached():
|
||||
logger.warning('Wait inventory selected timeout')
|
||||
break
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user