Correctly skip pathfinder ticks for inactive entities (#5085)

Fixes #5083
This commit is contained in:
Andrew Steinborn 2021-01-19 17:51:14 -05:00
parent bf5118006b
commit 637e21957f

View file

@ -303,12 +303,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ // Paper start
+ public boolean inactiveTick() {
+ if (getCurRate() % getTickRate() != 0) {
+ incRate();
+ return false;
+ } else {
+ return true;
+ }
+ incRate();
+ return getCurRate() % getTickRate() == 0;
+ }
+ public boolean hasTasks() {
+ for (PathfinderGoalWrapped task : getTasks()) {