Slab recipes modified for compatibility with mesecons’ wooden pressure plate and consistency with minetest_game’s default slab recipes.

master
Luka Vandervelden 2014-01-18 18:18:13 +01:00
parent 9a084ceb68
commit 94d69df60e
1 changed files with 4 additions and 3 deletions

View File

@ -115,17 +115,18 @@ minetest.register_craft({
})
minetest.register_craft({
output = 'bamboo:slab_h 4',
output = 'bamboo:slab_h 6',
recipe = {
{'bamboo:block', 'bamboo:block'},
{'bamboo:block', 'bamboo:block', 'bamboo:block'},
}
})
minetest.register_craft({
output = 'bamboo:slab_v 4',
output = 'bamboo:slab_v 6',
recipe = {
{'bamboo:block'},
{'bamboo:block'},
{'bamboo:block'}
}
})