-
-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple food items don't have a recipe #1779
Comments
Thank you for the report, I will investigate the issue. |
Found another one that has no recipe: https://ftb.gamepedia.com/Garlic_Steak
|
Found another one without recipe: https://harvestcraftmod.fandom.com/wiki/BBQ_Jackfruit
Found another one without recipe: https://harvestcraftmod.fandom.com/wiki/Lychee_Tea Found another one without recipe: https://harvestcraftmod.fandom.com/wiki/Imitation_Crab_Sticks Found another one without recipe: https://harvestcraftmod.fandom.com/wiki/Schnitzel Found another one without recipe: |
Maybe this helps fixing the issue: |
As I couldn't find an online recipe for swedish meatballs, I extracted this on out of the harvestcraft mod. The issue is the one stated in the harvestcraft issue. |
(Note to self or the person who fixes this) Found the following fixes after digging through the above issue. oreDict.cropLychee.add(<harvestcraft:lycheeitem>);
oreDict.cropJackfruit.add(<harvestcraft:jackfruititem>);
recipes.addShapeless(<harvestcraft:imitationcrabsticksitem>, [<ore:toolCuttingboard>, <ore:foodFlour>, <ore:listAllfishcooked>, <ore:listAllegg>, <minecraft:dye:1>]);
recipes.addShapeless(<harvestcraft:saucedlambkebabitem>, [<ore:toolMixingbowl>, <ore:foodLambkebab>, <ore:foodPlainyogurt>, <ore:listAllheavycream>, <ore:cropGarlic>, <ore:cropSpiceleaf>, <ore:cropLime>]);
recipes.addShapeless(<harvestcraft:swedishmeatballsitem>, [<ore:toolSaucepan>, <ore:foodGroundbeef>, <ore:foodFlour>, <ore:cropSpiceleaf>, <ore:foodGroundnutmeg>, <ore:listAllheavycream>, <ore:foodBlackpepper>, <ore:listAllheavycream>, <ore:listAllegg>]);
recipes.addShapeless(<harvestcraft:garlicsteakitem>, [<ore:toolSkillet>, <ore:listAllbeefraw>, <ore:cropGarlic>, <ore:foodButter>, <ore:cropSpiceleaf>]);
recipes.removeShapeless(<harvestcraft:quesadillaitem>);
recipes.addShapeless(<harvestcraft:quesadillaitem>, [<ore:toolSkillet>, <ore:foodTortilla>, <ore:foodCheese>]);
recipes.addShapeless(<harvestcraft:schnitzelitem>, [<ore:toolSkillet>, <ore:listAllmuttonraw>, <ore:foodFlour>, <ore:cropLemon>, <ore:foodOliveoil>, <ore:foodBlackpepper>]);
recipes.addShapeless(<harvestcraft:schnitzelitem>, [<ore:toolSkillet>, <ore:listAllporkraw>, <ore:foodFlour>, <ore:cropLemon>, <ore:foodOliveoil>, <ore:foodBlackpepper>]);
recipes.addShapeless(<harvestcraft:bratwurstitem>, [<ore:toolCuttingboard>, <ore:foodPorksausage>, <ore:foodPickles>, <ore:cropOnion>, <minecraft:bread>]); |
Found two more without recipes:
|
Modpack version
1.81a
Issue
Berry Vinaigrette Salad from Pam's Harvestcraft is not craftable although it is shown in JEI. According to the wiki it does have a recipe. Don't know if this is a bug in the modpack or the mod itself.
https://ftb.gamepedia.com/Berry_Vinaigrette_Salad
The text was updated successfully, but these errors were encountered: