Open Metallic Grains Recipes Missing

  • Thread starter Thread starter curt1220
  • Start date Start date
  • This section is closed. Please do bug reports over at the FTB GitHub repos.
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
C

curt1220

Guest
Summary of the problem Metallic Grain Recipes Missing

Pack Version 1.9.0 and 1.10.0, possibly earlier versions.

What is the bug? Metallic grain recipes are not craftable or in JEI.

Mod & Version morebees-1.10.2-1.4.1.1.jar

Link to log file

Is it repeatable? Yes.

Known Fix
 
Last edited:
An incomplete work-around using shaped recipes. Improvements or a better fix are welcome!

Just place this in \scripts\ and start world.

Code:
#Name: mgrains.zs
#Author: curt1220

print("Initializing 'mgrains.zs'...");

recipes.addShaped(<minecraft:iron_ingot>, [
    [null, <morebees:grainMetallic>, null],
    [<morebees:grainMetallic>, null, <morebees:grainMetallic>],
    [null, null, null]
]);

recipes.addShaped(<forestry:ingotCopper>, [
    [null, null, null],
    [<morebees:grainMetallic>, null, <morebees:grainMetallic>],
    [null,  <morebees:grainMetallic>, null]
]);

recipes.addShaped(<forestry:ingotTin>, [
    [null, <morebees:grainMetallic>, null],
    [<morebees:grainMetallic>, null, <morebees:grainMetallic>],
    [null, <morebees:grainMetallic>, null]
]);

recipes.addShaped(<minecraft:gold_ingot>, [
    [<morebees:grainMetallic>, null, <morebees:grainMetallic>],
    [<morebees:grainMetallic>, <morebees:grainMetallic>, <morebees:grainMetallic>],
    [<morebees:grainMetallic>, null, <morebees:grainMetallic>]
]);

recipes.addShaped(<embers:ingotSilver>, [
    [<morebees:grainMetallic>, null, <morebees:grainMetallic>],
    [null, <morebees:grainMetallic>, null],
    [<morebees:grainMetallic>, null, <morebees:grainMetallic>]
]);

recipes.addShaped(<embers:ingotLead>, [
    [null, <morebees:grainMetallic>, null],
    [<morebees:grainMetallic>, <morebees:grainMetallic>, <morebees:grainMetallic>],
    [null, <morebees:grainMetallic>, null]
]);

print("Initialized 'mgrains.zs'");

Log output
Code:
[SERVER_ABOUT_TO_START][SERVER][INFO] Initializing 'mgrains.zs'...
[SERVER_ABOUT_TO_START][SERVER][INFO] Adding recipe for Iron Ingot
[SERVER_ABOUT_TO_START][SERVER][INFO] Adding recipe for Copper Ingot
[SERVER_ABOUT_TO_START][SERVER][INFO] Adding recipe for Tin Ingot
[SERVER_ABOUT_TO_START][SERVER][INFO] Adding recipe for Gold Ingot
[SERVER_ABOUT_TO_START][SERVER][INFO] Adding recipe for Silver Ingot
[SERVER_ABOUT_TO_START][SERVER][INFO] Adding recipe for Lead Ingot
[SERVER_ABOUT_TO_START][SERVER][INFO] Initialized 'mgrains.zs'
 
Last edited:
Thanks for posting the work around, I will try it out. Also got the same issue and can't find any other solutions online or really anyone else mentioning it.
 
No problem. Hadn't found it mentioned anywhere either so downloaded a new instance of Beyond just to be sure it was repeatable. I was trying to write a proper fix having the carpenter recipes return dust but this was as far as I got and decided it was close enough for my needs. Hopefully someone more adept will take notice, if not I may give it another go.