From a951efaf264de46cd4e993794a5177b70f8f8e65 Mon Sep 17 00:00:00 2001 From: LHM <64268144@qq.com> Date: Tue, 31 Mar 2026 22:44:14 +0800 Subject: [PATCH] Fix formatting in README.md Formatting in the README. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a8f3b1f49..65cbf9321 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Baritone +
@@ -111,7 +112,7 @@ Here are some links to help to get started: # API The API is heavily documented, you can find the Javadocs for the latest release [here](https://baritone.leijurv.com/). -Please note that usage of anything located outside of the ``baritone.api`` package is not supported by the API release +Please note that usage of anything located outside of the `baritone.api` package is not supported by the API release jar. Below is an example of basic usage for changing some settings, and then pathing to an X/Z goal. @@ -119,7 +120,6 @@ Below is an example of basic usage for changing some settings, and then pathing ```java BaritoneAPI.getSettings().allowSprint.value = true; BaritoneAPI.getSettings().primaryTimeoutMS.value = 2000L; - BaritoneAPI.getProvider().getPrimaryBaritone().getCustomGoalProcess().setGoalAndPath(new GoalXZ(10000, 20000)); ```