October 1, 20196 yr Just now, Tieso2001 said: What value? 10 minutes ago, Animefan8888 said: Then use its constructor to initialize it. Basic Java. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
October 1, 20196 yr Author 6 minutes ago, Animefan8888 said: Then use its constructor to initialize it. But how do pass the inventory to it recipeWrapper = new RecipeWrapper(); It needs IItemHandlerModifiable but inventory from my TileEntity is IItemHandler
October 1, 20196 yr 1 minute ago, Tieso2001 said: It needs IItemHandlerModifiable but inventory from my TileEntity is IItemHandler You use ItemStackHandler to initialize it though. And ItemStackHandler is dun dun dun a IItemHandlerModifiable instance. Therefore cast it. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
October 1, 20196 yr Author 4 minutes ago, Animefan8888 said: You use ItemStackHandler to initialize it though. And ItemStackHandler is dun dun dun a IItemHandlerModifiable instance. Therefore cast it. Okay, did that, that worked. I can acces RecipeWrapper from my TileEntity, but what should I use as the second argument of RecipeManager#getRecipe.
October 1, 20196 yr 3 minutes ago, Tieso2001 said: but what should I use as the second argument of RecipeManager#getRecipe. The second argument should be the RecipeWrapper field, and the first one should be your RecipeType. Quote public static final IRecipeType<?> steeping = IRecipeType.register("steeping"); Also instead of just "steeping" this should contain your modid. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
October 1, 20196 yr Author 3 minutes ago, Animefan8888 said: The second argument should be the RecipeWrapper field, and the first one should be your RecipeType. That doesn't work because recipeWrapper gives an error saying that it is the wrong type. Edit: Apparantly there was something wrong with the recipeType which gave an error for both arguments Edited October 1, 20196 yr by Tieso2001
October 1, 20196 yr 19 minutes ago, Tieso2001 said: Edit: Apparantly there was something wrong with the recipeType which gave an error for both arguments I'm gonna need to see the line of code and the exact error. Unless this is you saying that you've solved it. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
October 1, 20196 yr Author Just now, Animefan8888 said: I'm gonna need to see the line of code and the exact error. Unless this is you saying that you've solved it. Yes I meant that I solved it.
October 1, 20196 yr Author Got everything working except for the following: I created a recipe json named "test_steeping.json". I put the recipe json in "resources.data.boneappletea.recipes". In the TileEntity: RecipeManager#getRecipe only gives null and the recipe I created. I pushed everything to github again so you can take a look again: https://github.com/Tieso2001/BoneAppleTea/tree/1.14.4-dev Any idea what is wrong?
October 1, 20196 yr 7 minutes ago, Tieso2001 said: Any idea what is wrong? test_steeping.json Quote "ingredients": [ { "item": "boneappletea:barley_grains" } ] is not the same as Quote JsonElement jsonelement = JSONUtils.isJsonArray(json, "ingredient") ? JSONUtils.getJsonArray(json, "ingredient") : JSONUtils.getJsonObject(json, "ingredient"); Its also either a JsonArray or a JsonObject so in your Json you need to choose one. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
October 1, 20196 yr Author 7 minutes ago, Animefan8888 said: is not the same as Changed it in the json to ingredient. Also I have a question: public static final IRecipeType<SteepingRecipe> steeping = IRecipeType.register("steeping"); If I register the type like this, what does the type in the json have to be. "minecraft:steeping", "boneappletea:steeping", or just "steeping"?
October 1, 20196 yr 26 minutes ago, Tieso2001 said: If I register the type like this, what does the type in the json have to be. The IRecipeType is only used in code. The type in the Json refers to the registry name of the IRecipeSerializer. 27 minutes ago, Tieso2001 said: IRecipeType.register("steeping"); As an extension. This will result in the IRecipeType being registered under minecraft:steeping which you don't want. Pass modid:steeping instead. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
October 2, 20196 yr Author On 10/1/2019 at 8:17 PM, Animefan8888 said: The IRecipeType is only used in code. The type in the Json refers to the registry name of the IRecipeSerializer. As an extension. This will result in the IRecipeType being registered under minecraft:steeping which you don't want. Pass modid:steeping instead. Finally got it working. Thank you for the help.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.