KnightMiner / Ceramics

Adds various early game items made of clay, or fill a void where the later version requires harder resources
MIT License
16 stars 15 forks source link

no return is not supported for clay bucket #54

Closed MeedoWorld closed 5 years ago

MeedoWorld commented 5 years ago

hello i don't know if its issue or i am doing it wrong here is the code i don't want this return an empty bucket but it show error: recipes.addShapeless(.noReturn(), [.withTag({fluids: {FluidName: "milk_friesian", Amount: 1000}}).onlyWithTag({fluids: {FluidName: "milk_friesian", Amount: 1000}})]);

KnightMiner commented 5 years ago

No return goes on the input, you have it on the output.

MeedoWorld commented 5 years ago

it worked ! thank you very much! yes you right and should goes after NBT tag solution : recipes.addShapeless(, [.withTag({fluids: {FluidName: "milk_sheep", Amount: 1000}}).onlyWithTag({fluids: {FluidName: "milk_sheep", Amount: 1000}}).noReturn()]);