codetaylor / artisan-worktables-1.12

Themed worktables with a tool slot.
Other
17 stars 6 forks source link

Recipes are voiding multiple itemstacks at once #243

Closed Freebi85 closed 4 years ago

Freebi85 commented 4 years ago

I am currently testing the latest artisan version in conjunction with gregtech and have noticed that when crafting something while several items are in one slot, all of them are voided. (not sure if gregtech tools have any influence on that) Made a small video about that. video.zip

recipes.remove(<waterstrainer:strainer_survivalist_solid>);

RecipeBuilder.get("blacksmith")
  .setShaped([
    [null, null, null, null, null], 
    [null, <ore:barsIron>, <ore:stickWood>, <ore:barsIron>, null], 
    [null, <ore:plateCurvedIron>, <waterstrainer:net:1>, <ore:plateCurvedIron>, null], 
    [null, <ore:barsIron>, <ore:stickWood>, <ore:barsIron>, null], 
    [null, null, null, null, null]])
  .setFluid(<liquid:lowgas> * 3000)
  .addOutput(<waterstrainer:strainer_survivalist_solid>)
  .addTool(<ore:artisansBurner>, 6)
  .addTool(<ore:craftingToolScrewdriver>, 6) 
  .addTool(<ore:artisansPliers>, 6) 
  .create();
codetaylor commented 4 years ago

Thanks for the report!

Should be fixed in 1.23.4

Freebi85 commented 4 years ago

Damn you’re so fast man. Thank you very much ♥️

codetaylor commented 4 years ago

You're welcome :)