@@ -121,7 +121,7 @@ public static void initialize(PathHandler pathHandler) {
121121 CommandSystem .addCommand (
122122 "pathBlock" ,
123123 "path <block:STRING>" ,
124- "/path level <level >\n Finds a path to the nearest with of the given type." ,
124+ "/path <block >\n Finds a path to the nearest block of the given type (e.g. minecraft:diamond_ore) ." ,
125125 (templateId , parameters ) -> {
126126 if (PlayerUtils .getPlayer () != null ) {
127127 final BaseBlockPos from = PlayerUtils .getPlayerBlockPos ();
@@ -140,7 +140,7 @@ public static void initialize(PathHandler pathHandler) {
140140 CommandSystem .addCommand (
141141 "pathBlockFreelook" ,
142142 "path <block:STRING> freelook" ,
143- "/path level <level >\n Finds a path to the nearest with of the given type and enables freelook. \" , ." ,
143+ "/path <block >\n Finds a path to the nearest block of the given type (e.g. minecraft:diamond_ore) and enables freelook." ,
144144 (templateId , parameters ) -> {
145145 if (PlayerUtils .getPlayer () != null ) {
146146 final BaseBlockPos from = PlayerUtils .getPlayerBlockPos ();
@@ -174,7 +174,7 @@ public static void initialize(PathHandler pathHandler) {
174174 CommandSystem .addCommand (
175175 "followStop" ,
176176 "follow stop" ,
177- "follow stop\n Stop following the current path." ,
177+ "/ follow stop\n Stop following the current path." ,
178178 (templateId , parameters ) -> {
179179 if (PlayerUtils .getPlayer () != null ) {
180180 pathHandler .cancelPath ();
0 commit comments