mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-06 22:04:25 -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",
|
drawtype = "airlike",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = true,
|
||||||
pointable = false,
|
pointable = false,
|
||||||
diggable = false,
|
diggable = false,
|
||||||
buildable_to = false,
|
buildable_to = false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue