aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/RecipeHelper.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
index 9c50febba..d86c99586 100644
--- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
+++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java
@@ -11,6 +11,7 @@ import net.minecraft.client.gui.screen.ingame.AbstractContainerScreen;
import net.minecraft.recipe.Recipe;
import net.minecraft.recipe.RecipeManager;
import net.minecraft.util.Identifier;
+import org.jetbrains.annotations.ApiStatus;
import java.util.List;
import java.util.Map;
@@ -90,7 +91,7 @@ public interface RecipeHelper {
*/
Map<RecipeCategory<?>, List<RecipeDisplay>> getRecipesFor(EntryStack stack);
- RecipeCategory getCategory(Identifier identifier);
+ RecipeCategory<?> getCategory(Identifier identifier);
/**
* Gets the vanilla recipe manager
@@ -210,6 +211,7 @@ public interface RecipeHelper {
List<RecipeHelper.ScreenClickArea> getScreenClickAreas();
+ @ApiStatus.Internal
boolean arePluginsLoading();
interface ScreenClickArea {