mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 13:17:00 +08:00
Fix: Reverse swipe in ensure_edge_insight
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user