[1.10.2] Crafting Voids Item from Mod
Elvarion opened this issue ยท 1 comments
Description
Autocrafting that has items being returned are lost upon crafting.
I am trying to craft some items from the mod called "Woot". These crafting operations require a "Hammer" and a "Casing Dye". Both which are returned upon crafting. Crafting them normal in the Crafting grid will give them back. However when using the Assembler and Autocrafting the hammer and casing gets voided. Also the system does not think it will be getting the Hammer and Casing back so crafting more then the amount you get from a single crafting will tell you that you need more Hammers and Casings.
Since we have Refined Storage also on the Server I tried it there and the Hammer and Casing are returned upon crafting.
Tried some crafting with Buckets in AE2 and these were returned upon crafting. So not really sure where the issue lies.
Pre-Crafting
Pattern
Crafting Screen
Post-Crafting
As you can see the Hammer and the Casing Dye is now gone.
There is no Exporting on my network of any sort. Its a closed system with 3 Interfaces connected to Assemblers, a 1k Crafting Storage and 1 Drive
Environment
SMP Server
Resonant Rise mod pack
- Minecraft Version: 1.10.2
- AE2 Version: appliedenergistics2-rv4-alpha-11
- Forge Version: 12.18.3.2185
Opposed to buckets and other tools, these are not valid container items. Therefore they will not be returned as part of the vanilla crafting. Instead they are duped back into the crafting inventory by a custom recipe handler.
For performance and stability reasons, AE only performs the recipe once when loading a pattern and considers the normal output + container items as valid options. The crafting itself just dupes the cached output as actually performing a real crafting operation can easily be a major performance issue with poorly written custom crafting recipes in a high throughput situation. As well as break the whole crafting chains due to crafting random items, which no longer meet the defined item for the pattern.
Thus you should request that woot actually uses the vanilla way to handle tools with container items, if you want to see it work.