From 234fd3f75e0b3a61da9ae44b9efbf6f4be448893 Mon Sep 17 00:00:00 2001 From: Babbaj Date: Sun, 13 Sep 2020 18:45:50 -0400 Subject: [PATCH] don't use getter --- src/main/java/baritone/Baritone.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/baritone/Baritone.java b/src/main/java/baritone/Baritone.java index 32302287..0ec5583f 100755 --- a/src/main/java/baritone/Baritone.java +++ b/src/main/java/baritone/Baritone.java @@ -104,14 +104,14 @@ public class Baritone implements IBaritone { this.pathingControlManager = new PathingControlManager(this); { - this.getPathingControlManager().registerProcess(followProcess = new FollowProcess(this)); - this.getPathingControlManager().registerProcess(mineProcess = new MineProcess(this)); - this.getPathingControlManager().registerProcess(customGoalProcess = new CustomGoalProcess(this)); // very high iq - this.getPathingControlManager().registerProcess(getToBlockProcess = new GetToBlockProcess(this)); - this.getPathingControlManager().registerProcess(builderProcess = new BuilderProcess(this)); - this.getPathingControlManager().registerProcess(exploreProcess = new ExploreProcess(this)); - this.getPathingControlManager().registerProcess(backfillProcess = new BackfillProcess(this)); - this.getPathingControlManager().registerProcess(farmProcess = new FarmProcess(this)); + this.pathingControlManager.registerProcess(followProcess = new FollowProcess(this)); + this.pathingControlManager.registerProcess(mineProcess = new MineProcess(this)); + this.pathingControlManager.registerProcess(customGoalProcess = new CustomGoalProcess(this)); // very high iq + this.pathingControlManager.registerProcess(getToBlockProcess = new GetToBlockProcess(this)); + this.pathingControlManager.registerProcess(builderProcess = new BuilderProcess(this)); + this.pathingControlManager.registerProcess(exploreProcess = new ExploreProcess(this)); + this.pathingControlManager.registerProcess(backfillProcess = new BackfillProcess(this)); + this.pathingControlManager.registerProcess(farmProcess = new FarmProcess(this)); } this.worldProvider = new WorldProvider();