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