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

Fix: Re-check all timeout timer

- Fix tactical class get stuck when skill level reach to max.
This commit is contained in:
LmeSzinc
2020-06-03 05:06:51 +08:00
parent 9353ae1707
commit 30e11c6caf
7 changed files with 18 additions and 16 deletions

View File

@@ -96,6 +96,9 @@ class Timer:
def start(self):
if not self.started():
self._current = time.time()
self._reach_count = 0
return self
def started(self):
return bool(self._current)