Clean up crafting recipes, add new helpers
This commit is contained in:
parent
cdd326c812
commit
b0fc9778f9
6 changed files with 28 additions and 30 deletions
|
@ -634,19 +634,12 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
-- TODO: Remove helper recipe
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'default:book',
|
||||
recipe = { 'default:paper', 'default:paper', 'default:paper', 'mobs:leather',
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = 'shapeless',
|
||||
output = 'default:book',
|
||||
recipe = { 'default:paper', 'default:paper', 'default:paper', 'default:paper',
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:bookshelf',
|
||||
|
@ -1081,8 +1074,9 @@ minetest.register_craft({
|
|||
|
||||
--
|
||||
--Temporary
|
||||
--
|
||||
-- TODO: Remove when string is ready
|
||||
minetest.register_craft({
|
||||
output = "default:string",
|
||||
recipe = {{"default:paper", "default:paper"}},
|
||||
recipe = {{"default:paper",},
|
||||
{"default:paper"}},
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue