appease codacy
This commit is contained in:
parent
2da3222115
commit
52246e41c8
@ -28,6 +28,7 @@ import net.minecraft.util.math.BlockPos;
|
|||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
public class PathingControlManager {
|
public class PathingControlManager {
|
||||||
@ -126,7 +127,7 @@ public class PathingControlManager {
|
|||||||
proc.onLostControl();
|
proc.onLostControl();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
exec = proc.onTick(proc == inControlLastTick && baritone.getPathingBehavior().calcFailedLastTick(), baritone.getPathingBehavior().isSafeToCancel());
|
exec = proc.onTick(Objects.equals(proc, inControlLastTick) && baritone.getPathingBehavior().calcFailedLastTick(), baritone.getPathingBehavior().isSafeToCancel());
|
||||||
if (exec == null) {
|
if (exec == null) {
|
||||||
if (proc.isActive()) {
|
if (proc.isActive()) {
|
||||||
throw new IllegalStateException(proc.displayName());
|
throw new IllegalStateException(proc.displayName());
|
||||||
|
Loading…
Reference in New Issue
Block a user