forked from minetest-mods/moreblocks
Remove obsolete setting, update crafting recipes.
This commit is contained in:
parent
b3ba89af3a
commit
62dd5c9eed
@ -18,11 +18,8 @@ local function setting(settingtype, name, default)
|
||||
end
|
||||
end
|
||||
|
||||
-- Whether to direct wood based on player yaw when placing the block (true or false).
|
||||
-- Whether to direct wood based on player posititon when placing the block (true or false).
|
||||
setting("bool", "wood_facedir", true)
|
||||
|
||||
-- Allow stair/slab crafting without a circular saw or not (true or false).
|
||||
setting("bool", "allow_stair_slab_crafting", false)
|
||||
|
||||
-- Show stairs/slabs/panels/microblocks in creative inventory (true or false).
|
||||
setting("bool", "show_stairsplus_creative_inv", false)
|
||||
|
10
crafting.lua
10
crafting.lua
@ -157,7 +157,7 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "moreblocks:sweeper 3",
|
||||
output = "moreblocks:sweeper 4",
|
||||
recipe = {
|
||||
{"default:junglegrass"},
|
||||
{"default:stick"},
|
||||
@ -173,20 +173,20 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "moreblocks:split_stone_tile 1",
|
||||
output = "moreblocks:split_stone_tile",
|
||||
recipe = {
|
||||
{"moreblocks:stone_tile"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "moreblocks:empty_bookshelf 1",
|
||||
output = "moreblocks:empty_bookshelf",
|
||||
type = "shapeless",
|
||||
recipe = {"moreblocks:sweeper", "default:bookshelf"},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "moreblocks:coal_stone_bricks 1",
|
||||
output = "moreblocks:coal_stone_bricks 4",
|
||||
recipe = {
|
||||
{"moreblocks:coal_stone", "moreblocks:coal_stone"},
|
||||
{"moreblocks:coal_stone", "moreblocks:coal_stone"},
|
||||
@ -194,7 +194,7 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "moreblocks:iron_stone_bricks 1",
|
||||
output = "moreblocks:iron_stone_bricks 4",
|
||||
recipe = {
|
||||
{"moreblocks:iron_stone", "moreblocks:iron_stone"},
|
||||
{"moreblocks:iron_stone", "moreblocks:iron_stone"},
|
||||
|
Loading…
Reference in New Issue
Block a user