From 7d593ec3ab105a571f7ec04828557d406d3344d5 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 19 Jun 2019 15:49:04 +0800 Subject: stuff --- src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java') diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java index d6f2f80fa..f7ddec0c0 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java @@ -92,7 +92,7 @@ public interface RecipeHelper { * @param stack the stack to be crafted * @return the map of recipes */ - Map> getRecipesFor(ItemStack stack); + Map, List> getRecipesFor(ItemStack stack); RecipeCategory getCategory(Identifier identifier); @@ -116,7 +116,7 @@ public interface RecipeHelper { * @param stack the stack to be used * @return the map of recipes */ - Map> getUsagesFor(ItemStack stack); + Map, List> getUsagesFor(ItemStack stack); /** * Gets the optional of the speed crafting button area from a category @@ -155,7 +155,7 @@ public interface RecipeHelper { * * @return the map of recipes */ - Map> getAllRecipes(); + Map, List> getAllRecipes(); List getAllRecipesFromCategory(RecipeCategory category); -- cgit