切换信赖阈值改为>=,修改默认阈值为200

This commit is contained in:
Elaina 2024-10-20 11:23:08 +08:00
parent 7e17cc03be
commit 82c28493a7
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ class SwitchAssistantsSolver(SceneGraphSolver, BaseMixin):
self.tap(pos)
return
for pos in trust_number_scope:
if (num := self.number(pos, 14, 130)) > self.limit:
if (num := self.number(pos, 14, 130)) >= self.limit:
logger.debug(f"{pos}, {num}")
self.tap(pos)
return

View file

@ -475,7 +475,7 @@ class RIICPart(ConfModel):
"葛朗台跑单"
free_room: bool = False
"宿舍不养闲人模式"
trust_limit: int = 100
trust_limit: int = 200
"信赖值阈值"