Applied Energistics 2

Applied Energistics 2

137M Downloads

Adding silicon(refinedstorage) to craft inscriber silicon plate.

Oleksandrigo opened this issue ยท 4 comments

commented

Adding silicon(refinedstorage) to craft inscriber silicon plate.
Why then it is impossible to make a silicone plate from it?

Description

Environment

  • Minecraft Version: 1.12.2
  • AE2 Version: rv5-stable-11
  • Forge Version: 14.23.4.2707
commented

We register our machine recipes alongside the normal recipes in the ForgeRegistry<IRecipe> event.
I checked with the current version of RefinedStorage on curseforge and it appears the silicon oredict is only registered during the FMLInitializationEvent event.

As most of our machines recipes are set in stone during the ForgeRegistry<IRecipe> event, as well as the method to check for other mods' OD values such as the aforementioned silicon (for example the Ender IO one correctly overrides ours), the RS one gets skipped and not used.

Is there a reason the RS devs only register the silicon to the OD that late, instead of when they register the Item itself?

commented

In general, I eased my life and just downloaded the galactic craft.

commented

RS registers oredict entries to late. They have to be available at recipe registration.