mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 14:53:16 -04:00
Add LBM for torch_ceiling
This commit is contained in:
parent
ee0501b091
commit
0fb3f72702
1 changed files with 8 additions and 0 deletions
|
@ -109,6 +109,14 @@ minetest.register_lbm({
|
|||
end
|
||||
})
|
||||
|
||||
minetest.register_lbm({
|
||||
name = "default:remove_torch_ceiling",
|
||||
nodenames = {"default:torch_ceiling"},
|
||||
action = function(pos, node)
|
||||
minetest.set_node(pos, {name = "default:torch"})
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:torch 4",
|
||||
recipe = {
|
||||
|
|
Loading…
Add table
Reference in a new issue