This commit is contained in:
Brady 2018-11-13 21:47:40 -06:00
parent d79d56c2f9
commit f9270a7ed0
No known key found for this signature in database
GPG Key ID: 73A788379A197567

View File

@ -136,7 +136,7 @@ public enum Baritone implements IBaritone {
}
public PathingControlManager getPathingControlManager() {
return pathingControlManager;
return this.pathingControlManager;
}
public IGameEventListener getGameEventHandler() {
@ -159,47 +159,47 @@ public enum Baritone implements IBaritone {
@Override
public CustomGoalProcess getCustomGoalProcess() { // Iffy
return customGoalProcess;
return this.customGoalProcess;
}
@Override
public GetToBlockProcess getGetToBlockProcess() { // Iffy
return getToBlockProcess;
return this.getToBlockProcess;
}
@Override
public IPlayerContext getPlayerContext() {
return playerContext;
return this.playerContext;
}
@Override
public FollowProcess getFollowProcess() {
return followProcess;
return this.followProcess;
}
@Override
public LookBehavior getLookBehavior() {
return lookBehavior;
return this.lookBehavior;
}
@Override
public MemoryBehavior getMemoryBehavior() {
return memoryBehavior;
return this.memoryBehavior;
}
@Override
public MineProcess getMineProcess() {
return mineProcess;
return this.mineProcess;
}
@Override
public PathingBehavior getPathingBehavior() {
return pathingBehavior;
return this.pathingBehavior;
}
@Override
public WorldProvider getWorldProvider() {
return worldProvider;
return this.worldProvider;
}
@Override