cooler messages

This commit is contained in:
Leijurv 2018-08-13 13:00:57 -07:00
parent 7a28b029ce
commit 4c653e1d31
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
2 changed files with 2 additions and 1 deletions

View File

@ -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;

View File

@ -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;
}