mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-02 20:10:04 -04:00
Merge bde073e521
into a4d056e493
This commit is contained in:
commit
cf24092a9c
2 changed files with 20 additions and 16 deletions
|
@ -341,6 +341,7 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
if(minetest.setting_getbool("disable_locking") ~= true) then
|
||||
minetest.register_craft({
|
||||
output = 'default:chest_locked',
|
||||
recipe = {
|
||||
|
@ -349,6 +350,7 @@ minetest.register_craft({
|
|||
{'group:wood', 'group:wood', 'group:wood'},
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:furnace',
|
||||
|
|
|
@ -370,6 +370,7 @@ doors.register_door("doors:door_steel", {
|
|||
sunlight = false,
|
||||
})
|
||||
|
||||
if(minetest.setting_getbool("disable_locking") ~= true) then
|
||||
minetest.register_craft({
|
||||
output = "doors:door_steel",
|
||||
recipe = {
|
||||
|
@ -378,6 +379,7 @@ minetest.register_craft({
|
|||
{"default:steel_ingot", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
doors.register_door("doors:door_glass", {
|
||||
description = "Glass Door",
|
||||
|
|
Loading…
Add table
Reference in a new issue