diff --git a/autowsgr/combat/actions.py b/autowsgr/combat/actions.py index d59fcbb2..8bee45da 100644 --- a/autowsgr/combat/actions.py +++ b/autowsgr/combat/actions.py @@ -189,8 +189,9 @@ def click_speed_up(device: AndroidController, *, battle_mode: bool = False) -> N """ coords = Coords.SPEED_UP_BATTLE if battle_mode else Coords.SPEED_UP_NORMAL - # 由于这个点击之后,马上就会进行画面识别,为了保证画面被正确识别,这里不加延迟 + # 由于加速过快可能导致卡顿, 增加极短延迟以确保点击生效 device.click(*coords, delay=False) + time.sleep(0.05) def click_skip_missile_animation(device: AndroidController) -> None: