-
-
Notifications
You must be signed in to change notification settings - Fork 15
Description
This bug occurs when the "automatically interact with quest NPCs" is enabled while using the flying vnav pathing to the next quest NPC.
The problem is that vnav always paths in a way where you first fly above the NPC's head, and then descend on their location afterwards. Meanwhile the automatic interaction attempts to interact the instant the NPC is in range, but at that point you're still flying above the NPC's head and you get the error message that the "target is too far below you".
Basically the flight path looks like the yellow line, but the interaction attempt already happens at the red point, which is too early because you're still too high above the target:

This could easily be fixed by waiting 500ms before interacting, while the flying navigation is active. At that point the descent will have started or finished. Or maybe better yet, let the navigation finish completely before starting the automatic interaction. Thanks!