mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-06 05:44:26 -04:00
Make door top node walkable.
Prevents ever-falling sand nodes on top of doors. Fixes #923.
This commit is contained in:
parent
dfee51c21e
commit
8e1f3841e3
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ minetest.register_node("doors:hidden", {
|
|||
drawtype = "airlike",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
walkable = true,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
buildable_to = false,
|
||||
|
|
Loading…
Add table
Reference in a new issue