Skip to content

Commit

Permalink
Change recipe for chiseled quartz (#11)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
obl3pplifp authored and SmallJoker committed Jun 9, 2019
1 parent cdda5c8 commit 7b5d74c
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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', ''},
{'', '', ''},
}
})

Expand Down

0 comments on commit 7b5d74c

Please sign in to comment.