diff --git a/tasks/rogue/route/exit.py b/tasks/rogue/route/exit.py index f8ee3c319..d3fc611c4 100644 --- a/tasks/rogue/route/exit.py +++ b/tasks/rogue/route/exit.py @@ -112,9 +112,9 @@ class RogueExit(CombatInteract): distant_point = np.array((1509.46, 247.34)) name_y = 77.60 foot_y = 621.82 - if point < 80: + if point[1] < 80: logger.warning(f'screen2direction: Point {point} to high') - point[1] = 80 + point = (point[0], 80) door_projection_bottom = ( Points([point]).link(vanish_point).get_x(name_y)[0],