reformat
This commit is contained in:
		@@ -36,7 +36,6 @@ public interface IPathFinder {
 | 
			
		||||
     *
 | 
			
		||||
     * @param primaryTimeout If a path is found, the path finder will stop after this amount of time
 | 
			
		||||
     * @param failureTimeout If a path isn't found, the path finder will continue for this amount of time
 | 
			
		||||
     *
 | 
			
		||||
     * @return The final path
 | 
			
		||||
     */
 | 
			
		||||
    PathCalculationResult calculate(long primaryTimeout, long failureTimeout);
 | 
			
		||||
 
 | 
			
		||||
@@ -33,7 +33,6 @@ public interface Goal {
 | 
			
		||||
     * @param x The goal X position
 | 
			
		||||
     * @param y The goal Y position
 | 
			
		||||
     * @param z The goal Z position
 | 
			
		||||
     *
 | 
			
		||||
     * @return Whether or not it satisfies this goal
 | 
			
		||||
     */
 | 
			
		||||
    boolean isInGoal(int x, int y, int z);
 | 
			
		||||
@@ -44,7 +43,6 @@ public interface Goal {
 | 
			
		||||
     * @param x The goal X position
 | 
			
		||||
     * @param y The goal Y position
 | 
			
		||||
     * @param z The goal Z position
 | 
			
		||||
     *
 | 
			
		||||
     * @return The estimate number of ticks to satisfy the goal
 | 
			
		||||
     */
 | 
			
		||||
    double heuristic(int x, int y, int z);
 | 
			
		||||
 
 | 
			
		||||
@@ -140,7 +140,6 @@ public abstract class AbstractNodeCostSearch implements IPathFinder {
 | 
			
		||||
     * @param y        The y position of the node
 | 
			
		||||
     * @param z        The z position of the node
 | 
			
		||||
     * @param hashCode The hash code of the node, provided by {@link BetterBlockPos#longHash(int, int, int)}
 | 
			
		||||
     *
 | 
			
		||||
     * @return The associated node
 | 
			
		||||
     * @see <a href="https://github.com/cabaletta/baritone/issues/107">Issue #107</a>
 | 
			
		||||
     */
 | 
			
		||||
 
 | 
			
		||||
@@ -23,7 +23,6 @@ import baritone.api.utils.IPlayerContext;
 | 
			
		||||
import baritone.api.utils.IPlayerController;
 | 
			
		||||
import baritone.utils.Helper;
 | 
			
		||||
import net.minecraft.client.entity.EntityPlayerSP;
 | 
			
		||||
import net.minecraft.client.multiplayer.PlayerControllerMP;
 | 
			
		||||
import net.minecraft.util.math.RayTraceResult;
 | 
			
		||||
import net.minecraft.world.World;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user