diff options
| author | shedaniel <daniel@shedaniel.me> | 2021-03-25 02:50:16 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2021-03-25 02:50:16 +0800 |
| commit | 23c820ea583052744232e84a6c99114223c43a69 (patch) | |
| tree | 8bcf639d79f33d9b4d110f1eb5002a550cedeb11 /runtime/src/main/java/me/shedaniel/rei/gui/RecipeScreen.java | |
| parent | c027169dfe9503a9d913589eb322cc11ddad0baa (diff) | |
| download | RoughlyEnoughItems-23c820ea583052744232e84a6c99114223c43a69.tar.gz RoughlyEnoughItems-23c820ea583052744232e84a6c99114223c43a69.tar.bz2 RoughlyEnoughItems-23c820ea583052744232e84a6c99114223c43a69.zip | |
Refactor MenuInfo, split client and server apis, new dual PluginManager system, remove @NotNull
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'runtime/src/main/java/me/shedaniel/rei/gui/RecipeScreen.java')
| -rw-r--r-- | runtime/src/main/java/me/shedaniel/rei/gui/RecipeScreen.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/src/main/java/me/shedaniel/rei/gui/RecipeScreen.java b/runtime/src/main/java/me/shedaniel/rei/gui/RecipeScreen.java index d34eb18a4..1760c7873 100644 --- a/runtime/src/main/java/me/shedaniel/rei/gui/RecipeScreen.java +++ b/runtime/src/main/java/me/shedaniel/rei/gui/RecipeScreen.java @@ -24,8 +24,8 @@ package me.shedaniel.rei.gui; import me.shedaniel.math.Rectangle; -import me.shedaniel.rei.api.ingredient.EntryStack; -import net.minecraft.resources.ResourceLocation; +import me.shedaniel.rei.api.common.category.CategoryIdentifier; +import me.shedaniel.rei.api.common.ingredient.EntryStack; import org.jetbrains.annotations.ApiStatus; @ApiStatus.Internal @@ -36,7 +36,7 @@ public interface RecipeScreen { void addResultStackToNotice(EntryStack<?> stack); - ResourceLocation getCurrentCategory(); + CategoryIdentifier<?> getCurrentCategory(); void recalculateCategoryPage(); }
\ No newline at end of file |
