Upd: Set maximum trailblaze power to 240

This commit is contained in:
LmeSzinc 2023-08-30 19:14:14 +08:00
parent 65527f8100
commit 92bbb9204a
2 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@ class StoredDailyActivity(StoredCounter, StoredExpiredAt0400):
class StoredTrailblazePower(StoredCounter):
FIXED_TOTAL = 180
FIXED_TOTAL = 240
class StoredSimulatedUniverse(StoredCounter, StoredExpiredAt0400):

View File

@ -73,11 +73,11 @@ class CombatPrepare(UI):
if total == 0:
continue
# Confirm if it is > 180, sometimes just OCR errors
if current > 180 and timeout.reached():
if current > 240 and timeout.reached():
break
if expect_reduce and current >= self.config.stored.TrailblazePower.value:
continue
if current <= 180:
if current <= 240:
break
self.config.stored.TrailblazePower.value = current