mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-12-22 16:10:18 +01:00
make doors top not diggable
This commit is contained in:
parent
44fccd50c6
commit
8e226561a1
@ -265,6 +265,10 @@ for _, current_door in ipairs(doors) do
|
||||
},
|
||||
}
|
||||
|
||||
local function nodig(pos, digger)
|
||||
return false
|
||||
end
|
||||
|
||||
local doors_rightclick = nil -- Crashes serv if empty table !
|
||||
if not scifi_nodes.doors_open_with_mesecon_only then doors_rightclick = open_door end
|
||||
|
||||
@ -327,6 +331,7 @@ for _, current_door in ipairs(doors) do
|
||||
{0, 0, 0, 0, 0, 0},
|
||||
}
|
||||
},
|
||||
can_dig = nodig,
|
||||
})
|
||||
|
||||
minetest.register_node(opened, {
|
||||
@ -385,5 +390,6 @@ for _, current_door in ipairs(doors) do
|
||||
{0, 0, 0, 0, 0, 0},
|
||||
}
|
||||
},
|
||||
can_dig = nodig,
|
||||
})
|
||||
end -- end of doors table browsing
|
||||
|
Loading…
Reference in New Issue
Block a user