切换信赖阈值改为>=,修改默认阈值为200
This commit is contained in:
parent
7e17cc03be
commit
82c28493a7
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -475,7 +475,7 @@ class RIICPart(ConfModel):
|
|||
"葛朗台跑单"
|
||||
free_room: bool = False
|
||||
"宿舍不养闲人模式"
|
||||
trust_limit: int = 100
|
||||
trust_limit: int = 200
|
||||
"信赖值阈值"
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue