mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-15 22:19:18 +00:00
Upd: Set maximum trailblaze power to 240
This commit is contained in:
parent
65527f8100
commit
92bbb9204a
@ -166,7 +166,7 @@ class StoredDailyActivity(StoredCounter, StoredExpiredAt0400):
|
||||
|
||||
|
||||
class StoredTrailblazePower(StoredCounter):
|
||||
FIXED_TOTAL = 180
|
||||
FIXED_TOTAL = 240
|
||||
|
||||
|
||||
class StoredSimulatedUniverse(StoredCounter, StoredExpiredAt0400):
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user