Exporting secondary output recipes only exporting 1 of each stack
SureenInk opened this issue ยท 4 comments
When I try to export a recipe with a secondary output, it only exports one of each stack. I.e. if I tell it I want 6 string, it exports as 1 string.
- Minecraft: 1.12.2
- Forge: 14.23.5.2847
- CraftTweaker: 4.1.20.562
- Artisan Worktables: 1.22.16-126-g90281c1
- Athenaeum: 1.17.4-9-g33cb77c
I'm not able to reproduce this.
Here's the output for a shaped recipe:
RecipeBuilder.get("carpenter")
.setShaped([
[null, <minecraft:planks>, null],
[<minecraft:planks>, <minecraft:planks>, <minecraft:planks>]])
.addOutput(<minecraft:chest>)
.setExtraOutputOne(<minecraft:log> * 4, 1.0)
.setExtraOutputTwo(<minecraft:string> * 8, 1.0)
.create();
It looks like it's not working for secondary inputs. Did you mean secondary inputs?
RecipeBuilder.get("carpenter")
.setShaped([
[<minecraft:planks>, null, null],
[<minecraft:planks>, null, null],
[<minecraft:planks>, <minecraft:planks>, <minecraft:planks>]])
.setSecondaryIngredients([<minecraft:string>])
.addOutput(<minecraft:chest>)
.setExtraOutputOne(<minecraft:string> * 8, 1.0)
.create();