From 7a1cf35934ef14c04f884fe6ae34282e1d6243ba Mon Sep 17 00:00:00 2001 From: shedaniel Date: Fri, 17 Jan 2020 14:31:30 +0800 Subject: 3.3.12 --- src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (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 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, List> getRecipesFor(EntryStack stack); - RecipeCategory getCategory(Identifier identifier); + RecipeCategory getCategory(Identifier identifier); /** * Gets the vanilla recipe manager @@ -210,6 +211,7 @@ public interface RecipeHelper { List getScreenClickAreas(); + @ApiStatus.Internal boolean arePluginsLoading(); interface ScreenClickArea { -- cgit