mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-25 18:05:26 +00:00
Fix: Stuck in the corner of Jarilo_CorridorofFadingEchoes_F1_X369Y439
This commit is contained in:
parent
6c56f5e286
commit
a12763b94b
@ -1,3 +1,4 @@
|
|||||||
|
from module.logger import logger
|
||||||
from tasks.map.control.waypoint import Waypoint
|
from tasks.map.control.waypoint import Waypoint
|
||||||
from tasks.map.keywords.plane import Jarilo_CorridorofFadingEchoes
|
from tasks.map.keywords.plane import Jarilo_CorridorofFadingEchoes
|
||||||
from tasks.rogue.route.base import RouteBase
|
from tasks.rogue.route.base import RouteBase
|
||||||
@ -167,12 +168,23 @@ class Route(RouteBase):
|
|||||||
enemy2right.straight_run(),
|
enemy2right.straight_run(),
|
||||||
enemy2left.straight_run().set_threshold(5),
|
enemy2left.straight_run().set_threshold(5),
|
||||||
)
|
)
|
||||||
self.clear_enemy(
|
if self.minimap.is_position_near(enemy2right, threshold=30):
|
||||||
enemy2left.set_threshold(5),
|
logger.info('Near enemy2right')
|
||||||
node3.straight_run(),
|
self.clear_enemy(
|
||||||
node4.set_threshold(3).straight_run(),
|
enemy2left.set_threshold(5),
|
||||||
enemy4.straight_run(),
|
node3.straight_run(),
|
||||||
)
|
node4.set_threshold(3).straight_run(),
|
||||||
|
enemy4.straight_run(),
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
logger.info('Not near enemy2right')
|
||||||
|
self.clear_enemy(
|
||||||
|
enemy2right.set_threshold(5),
|
||||||
|
enemy2left.set_threshold(5),
|
||||||
|
node3.straight_run(),
|
||||||
|
node4.set_threshold(3).straight_run(),
|
||||||
|
enemy4.straight_run(),
|
||||||
|
)
|
||||||
|
|
||||||
def Jarilo_CorridorofFadingEchoes_F1_X437Y122(self):
|
def Jarilo_CorridorofFadingEchoes_F1_X437Y122(self):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user