Posted August 29, 201411 yr So, i've made a custom furnace, but in my tile entity class it sais: The method getSmeltingResult(String) in the type Mod_Name is not applicable for the arguments (ItemStack) any help please?
August 29, 201411 yr Well, I can't really help if you don't provide source, but I'd wager you are trying to pass an ItemStack on that method instead of a String, which is what it says in the error. This is a basic java error, please try fixing it yourself before coming to this forums, as this is a Forge forums. I am the self-nominated Lord of the Mastodons and don't you dare deny it. Also, check out my YouTube channel: https://www.youtube.com/user/DerpDerp44/
August 29, 201411 yr Author I really don't know how to fix it, here is the source code: http://pastebin.com/XwY5wCVd please help me
August 29, 201411 yr Ok, I'm going to need your recipes class, because the method is obviously in there. I am the self-nominated Lord of the Mastodons and don't you dare deny it. Also, check out my YouTube channel: https://www.youtube.com/user/DerpDerp44/
August 29, 201411 yr Check your recipes class and there the method named getSmeltingResult(String). It seems like you are calling it by using ItemStack as parameter and method is expecting String.
August 29, 201411 yr Author Ok, I'm going to need your recipes class, because the method is obviously in there. here is the recipes class: http://pastebin.com/qC6VaaqC
August 29, 201411 yr Ok, in your getSmeltingResult method parameters, switch String to ItemStack and you are now good to go. Also, get rid of the cast to ItemStack, because it sure isn't helping you. I am the self-nominated Lord of the Mastodons and don't you dare deny it. Also, check out my YouTube channel: https://www.youtube.com/user/DerpDerp44/
September 1, 201411 yr Author The tileentity is fixed, but now i get an error in my recipes code at line 75: http://pastebin.com/yb11FXQH please 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.