1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 23:18:22 +08:00

Fix: Fleet lock detection

This commit is contained in:
LmeSzinc
2020-08-10 11:56:42 +08:00
parent 80821b7599
commit 9de84f29d7

View File

@@ -8,8 +8,8 @@ fast_forward = Switch('Fast_Forward')
fast_forward.add_status('on', check_button=FAST_FORWARD_ON)
fast_forward.add_status('off', check_button=FAST_FORWARD_OFF)
fleet_lock = Switch('Fleet_Lock')
fleet_lock.add_status('on', check_button=FLEET_LOCKED)
fleet_lock.add_status('off', check_button=FLEET_UNLOCKED)
fleet_lock.add_status('on', check_button=FLEET_LOCKED, offset=(5, 5))
fleet_lock.add_status('off', check_button=FLEET_UNLOCKED, offset=(5, 5))
class FastForwardHandler(ModuleBase):