Skip to content

Commit

Permalink
update drone limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shawnsdaddy committed Jan 29, 2025
1 parent 6857c7f commit 4776b8f
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 @@ -2156,7 +2156,7 @@ def drone(
if accelerate:
drone_count = self.digit_reader.get_drone(self.recog.gray)
logger.info(f"当前无人机数量为:{drone_count}")
if drone_count < config.conf.drone_count_limit or drone_count > 200:
if drone_count < config.conf.drone_count_limit or drone_count > 225:
logger.info(f"无人机数量小于{config.conf.drone_count_limit}->停止")
return
logger.info("制造站加速")
Expand Down

0 comments on commit 4776b8f

Please sign in to comment.