Change recipe for chiseled quartz (#11)

The existing recipe(s) never seem to work. I can craft multiple kinds of quartz slabs using the crafting UI, a circular saw, or an xdecor Work Bench, but none of fit back together to form chiselled quartz.
This commit is contained in:
obl3pplifp 2019-06-09 19:49:39 +01:00 committed by SmallJoker
parent cdda5c8a03
commit 7b5d74cfdf
1 changed files with 4 additions and 14 deletions

View File

@ -109,21 +109,11 @@ minetest.register_craft({
-- Chiseled Quartz
minetest.register_craft({
output = 'quartz:chiseled 2',
output = 'quartz:chiseled 4',
recipe = {
{'stairs:slab_quartzblock', '', ''},
{'stairs:slab_quartzblock', '', ''},
{'', '', ''},
}
})
-- Chiseled Quartz (for stairsplus)
minetest.register_craft({
output = 'quartz:chiseled 2',
recipe = {
{'quartz:slab_block', '', ''},
{'quartz:slab_block', '', ''},
{'', '', ''},
{'quartz:block', 'quartz:block', ''},
{'quartz:block', 'quartz:block', ''},
{'', '', ''},
}
})