cooler messages
This commit is contained in:
parent
7a28b029ce
commit
4c653e1d31
@ -79,6 +79,7 @@ public class PathingBehavior extends Behavior {
|
||||
next = null;
|
||||
}
|
||||
if (next != null) {
|
||||
displayChatMessageRaw("Continuing on to planned next path");
|
||||
current = next;
|
||||
next = null;
|
||||
return;
|
||||
@ -99,6 +100,7 @@ public class PathingBehavior extends Behavior {
|
||||
if (next != null) {
|
||||
if (next.getPath().positions().contains(playerFeet())) {
|
||||
// jump directly onto the next path
|
||||
displayChatMessageRaw("Splicing into planned next path early...");
|
||||
current = next;
|
||||
next = null;
|
||||
return;
|
||||
|
@ -81,7 +81,6 @@ public class PathExecutor implements Helper {
|
||||
EntityPlayerSP thePlayer = mc.player;
|
||||
BlockPos whereAmI = playerFeet();
|
||||
if (pathPosition == path.length() - 1) {
|
||||
displayChatMessageRaw("On last position, ending this path.");
|
||||
pathPosition++;
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user