Skip to content

Commit 2d3a138

Browse files
NonSwagdavid
and
david
authored
[ci skip] Refine recipe management API documentation. (#12287)
* Refine recipe management API documentation. Improve Javadoc clarity for recipe addition methods, specifying client update behavior and stability considerations. Adjust formatting for better readability and consistency. * Fix typo in original javadoc --------- Co-authored-by: david <[email protected]>
1 parent 6ea4202 commit 2d3a138

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

paper-api/src/main/java/org/bukkit/Bukkit.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -1117,20 +1117,24 @@ public static boolean dispatchCommand(@NotNull CommandSender sender, @NotNull St
11171117

11181118
/**
11191119
* Adds a recipe to the crafting manager.
1120+
* Recipes added with this method won't be sent to the client automatically.
1121+
* <p>
1122+
* Players still have to discover recipes via {@link Player#discoverRecipe(NamespacedKey)}
1123+
* before seeing them in their recipe book.
11201124
*
11211125
* @param recipe the recipe to add
1122-
* @return true if the recipe was added, false if it wasn't for some
1123-
* reason
1126+
* @return true if the recipe was added, false if it wasn't for some reason
1127+
* @see #addRecipe(Recipe, boolean)
11241128
*/
11251129
@Contract("null -> false")
11261130
public static boolean addRecipe(@Nullable Recipe recipe) {
11271131
return server.addRecipe(recipe);
11281132
}
11291133

1130-
// Paper start - method to send recipes immediately
11311134
/**
11321135
* Adds a recipe to the crafting manager.
11331136
*
1137+
* @apiNote resendRecipes is ignored at the moment for stability reasons, recipes will always be updated
11341138
* @param recipe the recipe to add
11351139
* @param resendRecipes true to update the client with the full set of recipes
11361140
* @return true if the recipe was added, false if it wasn't for some reason
@@ -1139,7 +1143,6 @@ public static boolean addRecipe(@Nullable Recipe recipe) {
11391143
public static boolean addRecipe(@Nullable Recipe recipe, boolean resendRecipes) {
11401144
return server.addRecipe(recipe, resendRecipes);
11411145
}
1142-
// Paper end - method to send recipes immediately
11431146

11441147
/**
11451148
* Get a list of all recipes for a given item. The stack size is ignored

paper-api/src/main/java/org/bukkit/Server.java

+6-8
Original file line numberDiff line numberDiff line change
@@ -988,26 +988,24 @@ default World getWorld(@NotNull NamespacedKey worldKey) {
988988
public boolean dispatchCommand(@NotNull CommandSender sender, @NotNull String commandLine) throws CommandException;
989989

990990
/**
991-
* Adds a recipe to the crafting manager. Recipes added with
992-
* this method won't be sent to the client automatically. Use
993-
* {@link #updateRecipes()} or {@link #updateResources()} to
994-
* update clients to new recipes added.
991+
* Adds a recipe to the crafting manager.
992+
* Recipes added with this method won't be sent to the client automatically.
995993
* <p>
996-
* Player's still have to discover recipes via {@link Player#discoverRecipe(NamespacedKey)}
994+
* Players still have to discover recipes via {@link Player#discoverRecipe(NamespacedKey)}
997995
* before seeing them in their recipe book.
998996
*
999997
* @param recipe the recipe to add
1000-
* @return true if the recipe was added, false if it wasn't for some
1001-
* reason
998+
* @return true if the recipe was added, false if it wasn't for some reason
1002999
* @see #addRecipe(Recipe, boolean)
10031000
*/
10041001
@Contract("null -> false")
1005-
public boolean addRecipe(@Nullable Recipe recipe);
1002+
boolean addRecipe(@Nullable Recipe recipe);
10061003

10071004
// Paper start - method to send recipes immediately
10081005
/**
10091006
* Adds a recipe to the crafting manager.
10101007
*
1008+
* @apiNote resendRecipes is ignored for now for stability reasons, recipes will always be updated
10111009
* @param recipe the recipe to add
10121010
* @param resendRecipes true to update the client with the full set of recipes
10131011
* @return true if the recipe was added, false if it wasn't for some reason

0 commit comments

Comments
 (0)