fixed chiseling non-tfc blocks into slabs was only returning 1 slab instead of both

This commit is contained in:
Pyritie 2025-05-09 00:31:25 +01:00
parent ea28eeb90a
commit c26883efce

View file

@ -193,7 +193,7 @@ function registerTFGRockRecipes(event) {
}
}
if ("slab" in x) {
event.recipes.tfc.chisel(x.slab, x.raw, 'slab')
event.recipes.tfc.chisel(x.slab, x.raw, 'slab').extraDrop(x.slab)
//event.stonecutting(`2x ${x.slab}`, x.raw).id(`${x.raw}_to_${x.slab}`.replace(/:/g, '_'))
event.recipes.gtceu.macerator(`macerate_${x.slab}`.replace(/:/g, '_'))