Skip to content

Commit

Permalink
修复线索赠送给已有而非缺少的好友
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoZuohong committed May 20, 2024
1 parent a420d4b commit f2da569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arknights_mower/solvers/base_schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -1830,7 +1830,7 @@ def detect_unlock():
data = {"name": name}
for j in range(1, 8):
pos = (1230 + j * 64, 142 + i * 222)
data[j] = self.get_color(pos)[0] > 137
data[j] = self.get_color(pos)[0] < 137
friend_clue.append(data)
logger.debug(friend_clue)
friend = None
Expand Down

0 comments on commit f2da569

Please sign in to comment.