Add comment, fixes #102

This commit is contained in:
Leijurv 2018-08-28 10:04:25 -07:00 committed by GitHub
parent 09a146e0ce
commit df73e07923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ import static baritone.pathing.movement.MovementState.MovementStatus.*;
*/
public class PathExecutor implements Helper {
private static final double MAX_DIST_FROM_PATH = 2;
private static final double MAX_TICKS_AWAY = 200; // ten seconds
private static final double MAX_TICKS_AWAY = 200; // ten seconds. ok to decrease this, but it must be at least 110, see issue #102
private final IPath path;
private int pathPosition;
private int ticksAway;