diff options
| author | 2024-01-09 19:37:28 +0100 | |
|---|---|---|
| committer | 2024-01-09 19:37:28 +0100 | |
| commit | 4606c536a6260477870426234f748067240de3d1 (patch) | |
| tree | 52ecd35ab0a51dd84bbebb675f5433a85166b132 /src/main/java/lv/enes/mc/eris_alchemy/utils/RecipeUtils.java | |
| parent | Replace ItemMixin.java with proper ItemTooltipCallback usage. (diff) | |
| download | mc-eris-alchemy-4606c536a6260477870426234f748067240de3d1.tar.gz mc-eris-alchemy-4606c536a6260477870426234f748067240de3d1.tar.xz mc-eris-alchemy-4606c536a6260477870426234f748067240de3d1.zip | |
Added Alchemical Chest.
Diffstat (limited to 'src/main/java/lv/enes/mc/eris_alchemy/utils/RecipeUtils.java')
| -rw-r--r-- | src/main/java/lv/enes/mc/eris_alchemy/utils/RecipeUtils.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/lv/enes/mc/eris_alchemy/utils/RecipeUtils.java b/src/main/java/lv/enes/mc/eris_alchemy/utils/RecipeUtils.java index 53ceaab..0eb6a2c 100644 --- a/src/main/java/lv/enes/mc/eris_alchemy/utils/RecipeUtils.java +++ b/src/main/java/lv/enes/mc/eris_alchemy/utils/RecipeUtils.java | |||
| @@ -7,7 +7,7 @@ import net.minecraft.world.item.crafting.Recipe; | |||
| 7 | 7 | ||
| 8 | import java.util.List; | 8 | import java.util.List; |
| 9 | 9 | ||
| 10 | public class RecipeUtils { | 10 | public final class RecipeUtils { |
| 11 | public interface RecipeSuper { | 11 | public interface RecipeSuper { |
| 12 | List<Ingredient> lv_enes_mc$getIngredients(); | 12 | List<Ingredient> lv_enes_mc$getIngredients(); |
| 13 | ItemStack lv_enes_mc$getOutput(RegistryAccess registryAccess); | 13 | ItemStack lv_enes_mc$getOutput(RegistryAccess registryAccess); |
| @@ -20,4 +20,6 @@ public class RecipeUtils { | |||
| 20 | public static ItemStack getOutput(Recipe<?> recipe, RegistryAccess registryAccess) { | 20 | public static ItemStack getOutput(Recipe<?> recipe, RegistryAccess registryAccess) { |
| 21 | return ((RecipeSuper)recipe).lv_enes_mc$getOutput(registryAccess); | 21 | return ((RecipeSuper)recipe).lv_enes_mc$getOutput(registryAccess); |
| 22 | } | 22 | } |
| 23 | |||
| 24 | private RecipeUtils() {} | ||
| 23 | } | 25 | } |