切换信赖阈值改为>=,修改默认阈值为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