mirror of
https://github.com/W1NDes/M-AzurLaneAutoScript.git
synced 2026-05-14 07:08:04 +08:00
Fix: Reverse swipe in ensure_edge_insight
This commit is contained in:
parent
36cdc2d45e
commit
04ce78e5e1
@ -172,7 +172,7 @@ class Camera(InfoHandler):
|
||||
logger.info('Reverse swipes.')
|
||||
for vector in record[::-1]:
|
||||
x, y = vector
|
||||
if x != 0 and y != 0:
|
||||
if x != 0 or y != 0:
|
||||
self.map_swipe((-x, -y))
|
||||
|
||||
return record
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user