my house
This commit is contained in:
parent
d79d56c2f9
commit
f9270a7ed0
@ -136,7 +136,7 @@ public enum Baritone implements IBaritone {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public PathingControlManager getPathingControlManager() {
|
public PathingControlManager getPathingControlManager() {
|
||||||
return pathingControlManager;
|
return this.pathingControlManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
public IGameEventListener getGameEventHandler() {
|
public IGameEventListener getGameEventHandler() {
|
||||||
@ -159,47 +159,47 @@ public enum Baritone implements IBaritone {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public CustomGoalProcess getCustomGoalProcess() { // Iffy
|
public CustomGoalProcess getCustomGoalProcess() { // Iffy
|
||||||
return customGoalProcess;
|
return this.customGoalProcess;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public GetToBlockProcess getGetToBlockProcess() { // Iffy
|
public GetToBlockProcess getGetToBlockProcess() { // Iffy
|
||||||
return getToBlockProcess;
|
return this.getToBlockProcess;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IPlayerContext getPlayerContext() {
|
public IPlayerContext getPlayerContext() {
|
||||||
return playerContext;
|
return this.playerContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FollowProcess getFollowProcess() {
|
public FollowProcess getFollowProcess() {
|
||||||
return followProcess;
|
return this.followProcess;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LookBehavior getLookBehavior() {
|
public LookBehavior getLookBehavior() {
|
||||||
return lookBehavior;
|
return this.lookBehavior;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public MemoryBehavior getMemoryBehavior() {
|
public MemoryBehavior getMemoryBehavior() {
|
||||||
return memoryBehavior;
|
return this.memoryBehavior;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public MineProcess getMineProcess() {
|
public MineProcess getMineProcess() {
|
||||||
return mineProcess;
|
return this.mineProcess;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PathingBehavior getPathingBehavior() {
|
public PathingBehavior getPathingBehavior() {
|
||||||
return pathingBehavior;
|
return this.pathingBehavior;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WorldProvider getWorldProvider() {
|
public WorldProvider getWorldProvider() {
|
||||||
return worldProvider;
|
return this.worldProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user