mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-18 00:25:39 +01:00
#714: Added getRecipe() method to retrieve a Recipe by it's NamespacedKey
This commit is contained in:
parent
6b95d595cf
commit
8b831a9652
@ -1208,6 +1208,13 @@ public final class CraftServer implements Server {
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Recipe getRecipe(NamespacedKey recipeKey) {
|
||||||
|
Preconditions.checkArgument(recipeKey != null, "recipeKey == null");
|
||||||
|
|
||||||
|
return getServer().getCraftingManager().a(CraftNamespacedKey.toMinecraft(recipeKey)).map(IRecipe::toBukkitRecipe).orElse(null);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Iterator<Recipe> recipeIterator() {
|
public Iterator<Recipe> recipeIterator() {
|
||||||
return new RecipeIterator();
|
return new RecipeIterator();
|
||||||
|
Loading…
Reference in New Issue
Block a user