Remove redundant inheritance of Helper in PathExecutor

This commit is contained in:
Brady 2018-08-08 23:13:36 -05:00
parent a6b5d423d5
commit f55686295c
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,6 @@ import baritone.bot.pathing.movement.ActionCosts;
import baritone.bot.pathing.movement.Movement;
import baritone.bot.pathing.movement.MovementState;
import baritone.bot.utils.BlockStateInterface;
import baritone.bot.utils.Helper;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.init.Blocks;
import net.minecraft.util.Tuple;
@ -38,7 +37,7 @@ import static baritone.bot.pathing.movement.MovementState.MovementStatus.*;
*
* @author leijurv
*/
public class PathExecutor extends Behavior implements Helper {
public class PathExecutor extends Behavior {
private static final double MAX_DIST_FROM_PATH = 2;
private static final double MAX_TICKS_AWAY = 200; // ten seconds
private final IPath path;